:root {
  --color-base: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.08);
  --color-text: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.72);
  --color-accent: #0fa9da;
  --color-accent-bold: #1c90d1;
  --color-accent-light: #9fdefd;
  --color-accent-3: #f9842a;
  --color-border: rgba(255, 255, 255, 0.18);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  --fs-hero: clamp(2.6rem, 5.4vw, 4.8rem);
  --fs-section-title: clamp(1.8rem, 3vw, 2.8rem);
  --fs-caption: 0.95rem;
  --fs-nav: 1rem;
  --fs-body: 1rem;
  --fs-small: 0.9rem;

  --lh-heading: 1.1;
  --lh-body: 1.6;

  --section-pad: clamp(3rem, 8vw, 6rem);
  --section-pad-top: clamp(1.6rem, 5vw, 3.6rem);
  --container-width: 1280px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  height: 100%;
}

html.no-scroll-snap,
body.no-scroll-snap {
  scroll-snap-type: none;
}

html,
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-accent);
  font-weight: 400;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  overflow-y: scroll;
  scroll-snap-type: y proximity;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

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


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

button {
  font-family: inherit;
}

button,
[role="button"],
a {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section--screen {
  height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
}

.section__inner {
  width: min(var(--container-width), 94vw);
}


.section__header {
  margin-bottom: 2rem;
}

.section__eyebrow {
  font-size: var(--fs-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  line-height: var(--lh-heading);
  margin-top: 0.6rem;
}

.section__lead {
  color: var(--color-muted);
  margin-top: 0.9rem;
  max-width: 640px;
}

.section__content {
  margin-top: 2rem;
}

.section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: #0c9ac7;
}

.btn--ghost {
  background: transparent;
}

.btn--ghost:hover {
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--color-accent-3);
  color: #ffffff;
}

.btn--accent:hover {
  transform: translateY(-2px);
  background: #e97824;
}

.section-orb {
  position: absolute;
  left: 50%;
  top: 60%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  padding: 0;
  cursor: pointer;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.25s ease;
  display: block;
}

.section-orb__icon {
  position: absolute;
  left: 50%;
  top: 2%;
  width: 28px;
  height: 28px;
  color: #ffffff;
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.6));
  transform: translateX(-50%);
}

.section-orb:hover {
  transform: translateX(-50%) scale(1.04);
}

.section-orb:active {
  transform: translateX(-50%) scale(0.98);
}

.section-orb:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 6px;
}

.section-orb.section-orb--inactive {
  cursor: default;
  pointer-events: none;
}


@media (max-width: 1023px) {
  :root {
    --fs-hero: clamp(2.2rem, 8vw, 3.2rem);
    --fs-section-title: clamp(1.6rem, 5vw, 2.2rem);
    --fs-body: 0.98rem;
    --section-pad: clamp(2.4rem, 10vw, 4rem);
    --section-pad-top: clamp(1.4rem, 7vw, 2.6rem);
  }
}

@media (max-width: 600px) {
  html,
  body {
    scroll-snap-type: none;
  }

  .section--screen {
    scroll-snap-align: none;
  }

  .section-orb {
    display: none;
  }

  [class$="__next"],
  [class$="__prev"] {
    display: none !important;
  }
}
