:root {
  --brand-orange: #f7941d;
  --brand-pink: #d9318a;
  --brand-gradient: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  --brand-soft: linear-gradient(135deg, rgba(247, 148, 29, 0.1), rgba(217, 49, 138, 0.1));
  --brand-softer: linear-gradient(135deg, rgba(247, 148, 29, 0.05), rgba(217, 49, 138, 0.05));
  --ink-950: #020617;
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #f1f5f9;
  --white-05: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-20: rgba(255, 255, 255, 0.2);
  --shadow-md: 0 16px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
  --radius-xl: 1.5rem;
  --radius-lg: 1.25rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

p,
h1,
h2,
h3,
h4,
ul {
  margin: 0;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  object-fit: contain;
}

.presentation {
  position: relative;
}

.page-width {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
}

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.slide--cover {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #f1f5f9 100%);
}

.slide--cover::before {
  width: 24rem;
  height: 24rem;
  left: -6rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.16), transparent 72%);
}

.slide--cover::after {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(217, 49, 138, 0.14), transparent 72%);
}

.slide--light {
  background: #ffffff;
}

.slide--soft {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.slide--summary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #494848 48%, #000000 100%);
}

.slide--summary::before {
  width: 26rem;
  height: 26rem;
  left: -10rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.18), transparent 72%);
}

.slide--summary::after {
  width: 28rem;
  height: 28rem;
  right: -12rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(217, 49, 138, 0.18), transparent 72%);
}

.slide__inner {
  position: relative;
  z-index: 1;
}

.slide__inner--centered {
  text-align: center;
}

.slide-number {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2rem);
  bottom: 1.5rem;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--ink-400);
}

.slide-number--light {
  color: rgba(255, 255, 255, 0.6);
}

.slide-nav {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.slide-nav.is-idle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(0.75rem);
}

.slide-nav__dots {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.4rem 0;
}

.nav-button,
.slide-dot {
  border: 0;
  outline: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--ink-700);
  background: transparent;
}

.nav-button:hover:not(:disabled) {
  background: rgba(148, 163, 184, 0.12);
}

.nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.nav-button .icon {
  font-size: 1rem;
}

.slide-dot {
  width: 0.62rem;
  height: 0.62rem;
  padding: 0;
  border-radius: 999px;
  background: #cbd5e1;
}

.slide-dot:hover {
  background: #94a3b8;
}

.slide-dot.is-active {
  transform: scale(1.22);
  background: var(--brand-gradient);
  box-shadow: 0 0 0 4px rgba(217, 49, 138, 0.12);
}

.nav-button:focus-visible,
.slide-dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(217, 49, 138, 0.18);
}

.gradient-text {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.brand-logo {
  height: auto;
}

.brand-logo--hero {
  width: clamp(15rem, 34vw, 25rem);
  margin: 0 auto 3rem;
}

.brand-logo--summary {
  width: clamp(12rem, 25vw, 17.5rem);
  margin: 0 auto 2rem;
}

.hero-title,
.section-title__title,
.summary-title {
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-title {
  max-width: 15ch;
  margin: 0 auto 1.5rem;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.05;
}

.hero-copy,
.lead-copy,
.section-title__subtitle,
.summary-subtitle,
.summary-outro p {
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-copy {
  max-width: 52rem;
  margin: 0 auto;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--ink-600);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pill {
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(217, 49, 138, 0.18);
  border-radius: 999px;
  background: var(--brand-soft);
}

.pill span {
  font-size: 0.95rem;
  font-weight: 600;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title__title {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.section-title__subtitle {
  max-width: 68rem;
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--ink-600);
}

#slide-3 .section-title__subtitle {
  text-align: justify;
}

#slide-6 .section-title__subtitle {
  text-align: justify;
}

#slide-7 .section-title__subtitle {
  text-align: justify;
}

.lead-copy {
  max-width: 64rem;
  margin-bottom: 2.5rem;
  font-size: 1.08rem;
  color: var(--ink-600);
  text-align: justify;
}

.lead-copy strong,
.callout strong {
  color: var(--ink-900);
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 14px 30px rgba(217, 49, 138, 0.18);
}

.icon-shell .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-shell--lg {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-shell--lg .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-shell--md {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
}

.icon-shell--md .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-shell--sm {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
}

.icon-shell--sm .icon {
  width: 1rem;
  height: 1rem;
}

.icon-shell--soft {
  color: var(--brand-pink);
  background: var(--brand-soft);
  box-shadow: none;
}

.overview-grid,
.services-grid,
.support-grid,
.summary-grid {
  display: grid;
  gap: 1.5rem;
}

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

.overview-card,
.module-card,
.profile-card,
.service-card,
.support-card,
.team-card {
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background-color 180ms ease;
}

.overview-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--surface-soft), #ffffff);
}

.overview-card:hover,
.module-card:hover,
.profile-card:hover,
.service-card:hover,
.support-card:hover,
.team-card:hover,
.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 49, 138, 0.24);
  box-shadow: var(--shadow-md);
}

.overview-card__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.overview-card__number {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 148, 29, 0.92);
}

.overview-card__title,
.module-card__title,
.profile-card__title,
.service-card__title,
.support-card__title,
.step-card__title,
.summary-card__title {
  font-weight: 700;
  line-height: 1.35;
}

.overview-card__title {
  font-size: 1.2rem;
}

.overview-card__copy,
.service-card__copy,
.support-card__copy,
.step-card__copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-600);
  text-align: left;
}

.service-card__copy {
  text-align: left;
}

.module-stack {
  display: grid;
  gap: 1.25rem;
}

.module-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.module-card__header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.module-card__title {
  font-size: 0.95rem;
  color: var(--ink-900);
}

.module-card__description {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-500);
}

.bullet-grid,
.profile-list,
.campaign-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-grid {
  display: block;
  column-count: 1;
}

.bullet-group {
  min-width: 0;
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.bullet-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.bullet-column {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.sub-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0 1.4rem;
  display: grid;
  gap: 0.35rem;
}

.bullet-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-600);
}

.bullet-item--strong {
  color: var(--ink-700);
  font-weight: 600;
}

.bullet-item--sub,
.bullet-item--subtle {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-500);
}

.bullet {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.bullet--pink {
  background: var(--brand-pink);
}

.bullet--orange {
  background: var(--brand-orange);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.profile-card__header {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.profile-card__title {
  font-size: 0.95rem;
}

.profile-list {
  display: grid;
  gap: 0.4rem;
}

.campaign-card {
  padding: 1.25rem;
  border: 1px solid rgba(217, 49, 138, 0.18);
  border-radius: var(--radius-lg);
  background: var(--brand-softer);
}

.campaign-card__header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.campaign-card__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.campaign-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.campaign-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 2rem;
  align-items: start;
}

.campaign-column {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.campaign-item {
  min-width: 0;
}

.campaign-item__title {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink-700);
}

.campaign-item__title .bullet {
  margin-top: 0.48rem;
}

.list-heading,
.highlight-card__title {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-800);
}

.list-heading {
  margin-bottom: 1rem;
}

.list-heading .icon,
.highlight-card__title .icon,
.benefit-item .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-pink);
}

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

.service-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: left;
}

.service-card__title {
  margin: 0.9rem 0 0.5rem;
  font-size: 0.95rem;
}

.service-card:hover .icon-shell--soft {
  color: #ffffff;
  background: var(--brand-gradient);
}

.service-card:hover .icon-shell--soft .icon {
  filter: brightness(0) invert(1);
}

.callout {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
}

.callout--soft {
  border: 1px solid rgba(217, 49, 138, 0.18);
  background: var(--brand-soft);
}

.callout--brand {
  color: #ffffff;
  background: var(--brand-gradient);
}

.callout p {
  line-height: 1.75;
  text-align: justify;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--brand-gradient);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-card__header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.35rem;
}

.step-card__header .icon {
  width: 1rem;
  height: 1rem;
  color: var(--brand-pink);
}

.step-card__title {
  font-size: 0.95rem;
}

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

.support-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.support-card__title {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.92rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-card {
  padding: 1.25rem;
  border: 1px solid rgba(217, 49, 138, 0.18);
  border-radius: var(--radius-lg);
  background: var(--brand-soft);
}

.highlight-card__title {
  margin-bottom: 0.75rem;
}

.highlight-card__copy,
.summary-card__copy,
.benefit-item,
.summary-subtitle,
.benefits-panel__title,
.team-summary {
  color: inherit;
}

.highlight-card__copy {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-600);
  text-align: justify;
}

.team-summary {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: var(--brand-gradient);
  font-weight: 700;
}

.team-summary .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.team-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.team-card__header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.team-card__title {
  font-size: 0.92rem;
  line-height: 1.4;
}

.team-card__badge {
  flex: 0 0 auto;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-size: 0.76rem;
  font-weight: 700;
}

.team-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.team-card__item {
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--ink-600);
}

.team-card__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--ink-400);
}

.summary-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.summary-title {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.summary-subtitle {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.9);
}

.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.25rem;
}

.summary-card {
  padding: 1.25rem;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.summary-card__title {
  margin: 1rem 0 0.45rem;
  color: #ffffff;
  font-size: 1rem;
}

.summary-card__copy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.76);
}

.benefits-panel {
  padding: 1.5rem;
  border: 1px solid rgba(217, 49, 138, 0.28);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.18), rgba(217, 49, 138, 0.18));
}

.benefits-panel__title {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.9);
}

.benefit-item .icon {
  margin-top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--brand-orange);
}

.summary-outro {
  margin-top: 2.25rem;
  text-align: center;
}

.summary-outro p {
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.76);
  text-align: justify;
}

.summary-callout {
  max-width: 56rem;
  margin: 0 auto;
  color: var(--ink-700);
  background-color: #ffffff;
  background-image: var(--brand-soft);
}

.summary-callout p {
  margin: 0;
  color: var(--ink-700);
  text-align: center;
  font-weight: 600;
}

.summary-callout strong {
  color: var(--ink-900);
}

.nowrap {
  white-space: nowrap;
}

.cta-chip {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-weight: 700;
}

.cta-chip .icon {
  width: 1rem;
  height: 1rem;
}

.rotate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d0d1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.rotate-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.rotate-scene {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(99, 179, 237, 0.25);
  animation: ring-pulse 2.4s ease-in-out infinite;
}

.ring:nth-child(2) {
  inset: -16px;
  border-color: rgba(99, 179, 237, 0.15);
  animation-delay: 0.4s;
}

.ring:nth-child(3) {
  inset: -32px;
  border-color: rgba(99, 179, 237, 0.08);
  animation-delay: 0.8s;
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.phone-wrapper {
  animation: phone-rotate 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes phone-rotate {
  0%,
  35% {
    transform: rotate(0deg);
  }

  65%,
  100% {
    transform: rotate(90deg);
  }
}

.arc-wrapper {
  position: absolute;
  inset: -8px;
  animation: arc-show 2.4s ease-in-out infinite;
}

@keyframes arc-show {
  0%,
  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75%,
  100% {
    opacity: 0;
  }
}

.rotate-overlay__content {
  text-align: center;
  color: #ffffff;
}

.rotate-title {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
  text-align: center;
}

.rotate-sub {
  margin: 0;
  font-size: 0.875rem;
  color: #718096;
  text-align: center;
  max-width: 240px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .services-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .summary-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .slide {
    align-items: flex-start;
  }

  .overview-grid,
  .campaign-list,
  .step-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .campaign-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bullet-grid {
    column-count: 1;
  }

  .bullet-columns {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

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

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

@media (max-width: 800px) {
  .slide {
    padding-right: 6.5rem;
    padding-bottom: 5rem;
  }

  .slide-nav {
    right: 0.75rem;
    padding: 0.45rem;
  }

  .nav-button {
    width: 2.25rem;
    height: 2.25rem;
  }

  .slide-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .slide-number {
    right: 1rem;
    bottom: 1rem;
    font-size: 0.75rem;
  }

  .pill-list {
    max-width: 31rem;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .slide {
    padding: 1.1rem 1rem 5rem;
  }

  .slide-nav {
    right: 0.7rem;
    padding: 0.4rem;
  }

  .nav-button {
    width: 2.2rem;
    height: 2.2rem;
  }

  .slide-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .brand-logo--hero {
    width: min(15rem, 100%);
    margin-bottom: 2rem;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-copy,
  .section-title__subtitle,
  .lead-copy,
  .callout p,
  .summary-outro p,
  .highlight-card__copy,
  .overview-card__copy,
  .service-card__copy,
  .support-card__copy,
  .step-card__copy {
    text-align: left;
  }



  .profiles-grid,
  .services-grid,
  .support-grid,
  .team-grid,
  .summary-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .team-summary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pill-list {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
    margin-inline: auto;
    justify-content: stretch;
  }

  .pill {
    width: 100%;
    text-align: center;
  }

  .slide-number {
    right: 1rem;
    bottom: 1rem;
    font-size: 0.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
