:root {
  --bg-primary: #050c1c;
  --bg-secondary: #07142b;
  --bg-panel: rgba(5, 10, 25, 0.9);
  --text-primary: #f6f8ff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --accent-start: #4f8bff;
  --accent-end: #0060ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

a, .cta, .pill-btn {
  transition: all 0.2s ease-out;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 48px));
  }
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(4, 9, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.language-pill select {
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  outline: none;
  appearance: none;
  padding-right: 4px;
}

.language-pill select option {
  color: #0b0f18;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

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

@media (max-width: 720px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    padding: 12px 0 14px;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }

  .language-pill {
    align-self: flex-end;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  padding: 140px 0 120px;
  background: radial-gradient(circle at 50% 30%, rgba(34, 78, 160, 0.35), rgba(5, 12, 28, 0) 45%),
    linear-gradient(180deg, #07142b 0%, #050816 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.hero::before {
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(1px 1px at 35% 60%, rgba(255, 255, 255, 0.25), transparent 45%),
    radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.35), transparent 35%),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
    radial-gradient(1px 1px at 55% 75%, rgba(255, 255, 255, 0.3), transparent 40%);
  opacity: 0.25;
}

.hero::after {
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 70%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  z-index: 1;
}

.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(79, 139, 255, 0.45), rgba(5, 12, 28, 0) 65%);
  filter: blur(42px);
  transform: translateY(30px);
  opacity: 0.9;
}

.phone {
  position: relative;
  width: 240px;
  height: 480px;
  border-radius: 32px;
  background: linear-gradient(145deg, #0d2447, #0c2142);
  padding: 14px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: auto;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 68px;
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #dfe6f4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 20px 40px rgba(12, 33, 66, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-icon {
  position: relative;
  width: 64px;
  height: 64px;
}

.alert-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 40px solid #ff5c5c;
  filter: drop-shadow(0 10px 18px rgba(255, 92, 92, 0.35));
}

.alert-icon::after {
  content: "!";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.welcome-card {
  width: min(860px, 100%);
  margin-top: 10px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 32px;
  border: 1px solid transparent;
  background:
    linear-gradient(#050a19, #050a19) padding-box,
    linear-gradient(120deg, rgba(43, 74, 255, 0.3), rgba(0, 209, 255, 0.2)) border-box;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 128, 255, 0.08);
}

.welcome-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 14px;
  font-weight: 800;
}

.welcome-card p {
  margin: 0 auto 32px;
  max-width: 640px;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--text-muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 40px rgba(0, 96, 255, 0.35);
}

.cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 96, 255, 0.5);
}

.cta:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 10px 28px rgba(0, 96, 255, 0.38);
}

.info {
  background: #071125;
  padding: 96px 0 100px;
}

.report {
  background: #050c1f;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.report::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 18% 32%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(1px 1px at 62% 18%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(1px 1px at 78% 48%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.15), transparent 45%);
  opacity: 0.18;
  pointer-events: auto;
}

.report-inner {
  position: relative;
  z-index: 1;
}

.report-card {
  background:
    linear-gradient(#050a19, #050a19) padding-box,
    linear-gradient(140deg, rgba(79, 139, 255, 0.25), rgba(0, 209, 255, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 48px rgba(0, 96, 255, 0.08);
  display: grid;
  gap: 28px;
}

.report-heading {
  display: grid;
  gap: 6px;
}

.report-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
}

.report-heading .lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 2.6vw, 18px);
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.report-form {
  display: grid;
  gap: 18px;
}

.form-lang-row {
  display: flex;
  justify-content: flex-end;
}

.language-field {
  max-width: 240px;
}

.form-field {
  display: grid;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 600;
}

.form-field span {
  color: rgba(255, 255, 255, 0.8);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(79, 139, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.map-block {
  display: grid;
  gap: 10px;
}

.map-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.map {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.coords {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.result {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.report-submit {
  width: fit-content;
  padding-inline: 36px;
  justify-self: start;
  box-shadow: 0 16px 40px rgba(0, 96, 255, 0.35), 0 0 32px rgba(0, 209, 255, 0.2);
}

.report-submit:hover {
  box-shadow: 0 18px 50px rgba(0, 96, 255, 0.5), 0 0 36px rgba(0, 209, 255, 0.25);
}

.report-submit:active {
  box-shadow: 0 10px 28px rgba(0, 96, 255, 0.38);
}

.info-inner {
  text-align: center;
  max-width: 840px;
}

.info h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
}

.info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 2.6vw, 18px);
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #050c1f 0%, #02030a 100%);
  padding: 96px 0 88px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 25% 20%, rgba(255, 255, 255, 0.25), transparent 45%),
    radial-gradient(1px 1px at 60% 40%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(1px 1px at 80% 30%, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(1px 1px at 45% 75%, rgba(255, 255, 255, 0.2), transparent 45%),
    radial-gradient(1px 1px at 72% 85%, rgba(255, 255, 255, 0.15), transparent 45%);
  opacity: 0.18;
  pointer-events: auto;
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  z-index: 1;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.download-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.pill-btn--ios {
  background: #0b0f18;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.pill-btn--android {
  background: #1f5eff;
  box-shadow: 0 16px 36px rgba(31, 94, 255, 0.35);
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.pill-btn--android:hover {
  box-shadow: 0 20px 44px rgba(31, 94, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
  color: inherit;
  font-weight: 600;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 100px;
  }

  .phone {
    width: 220px;
    height: 440px;
  }

  .phone-glow {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  .nav-links a {
    font-weight: 700;
  }

  .hero {
    padding: 120px 0 90px;
  }

  .phone {
    width: 180px;
    height: 360px;
  }

  .phone-glow {
    width: 220px;
    height: 220px;
  }

  .cta {
    width: 100%;
  }

  .form-lang-row {
    justify-content: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .report-submit {
    width: 100%;
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* About page */
.about-body {
  background: radial-gradient(circle at 20% 20%, rgba(79, 139, 255, 0.16), rgba(5, 12, 28, 0) 28%),
    radial-gradient(circle at 70% 10%, rgba(0, 188, 255, 0.18), rgba(5, 12, 28, 0) 30%),
    linear-gradient(180deg, #050816 0%, #020611 100%);
  color: #f6f8ff;
}

.about-wrap {
  padding: 72px 0 96px;
  position: relative;
}

.about-header {
  display: grid;
  gap: 6px;
  max-width: 760px;
  padding-right: 140px;
}

.about-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.about-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
}

.about-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.about-lang {
  position: absolute;
  top: 24px;
  right: 24px;
}

.about-lang select {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 12px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.about-slider {
  margin-top: 32px;
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: rgba(12, 16, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  width: min(1200px, calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

.about-slider__track {
  position: relative;
  display: flex;
  align-items: stretch;
  height: clamp(520px, 70vh, 720px);
  gap: 20px;
  padding: 12px 0;
  will-change: transform;
  transition: transform 0.75s ease-out;
}

.about-card {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 20px;
  background: linear-gradient(140deg, #0f1624 0%, #1b2335 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 50px rgba(5, 8, 22, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.45s ease-out, transform 0.45s ease-out;
  overflow: hidden;
  isolation: isolate;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(95, 155, 255, 0.16), rgba(95, 155, 255, 0) 38%);
  z-index: 0;
  pointer-events: none;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.about-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e7ecf5;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.about-card__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  color: #e7ecf5;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out, letter-spacing 0.45s ease-out, font-variation-settings 0.45s ease-out;
  font-variation-settings: "wght" 430, "wdth" 94;
}

.about-card__text {
  margin: 0;
  color: rgba(231, 236, 245, 0.88);
  line-height: 1.72;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  transform: translateY(8px);
  opacity: 0.85;
  transition: opacity 0.45s ease-out 0.08s, transform 0.45s ease-out 0.08s, letter-spacing 0.45s ease-out 0.08s;
}

.about-card.card--visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 60px rgba(5, 8, 22, 0.52);
}

.about-card.card--visible .about-card__title {
  letter-spacing: 0.015em;
  transform: translateY(0) scale(1.02);
  font-variation-settings: "wght" 560, "wdth" 103;
}

.about-card.card--visible .about-card__text {
  opacity: 1;
  transform: translateY(0);
}

.about-card.card--instant {
  transition: none !important;
}

.about-card.is-active {
  border-color: rgba(95, 155, 255, 0.4);
  box-shadow: 0 32px 90px rgba(16, 24, 40, 0.55), 0 18px 48px rgba(47, 107, 255, 0.28);
  z-index: 5;
}

.about-card.is-active .about-tags span {
  background: linear-gradient(135deg, #2f6bff 0%, #5f9bff 100%);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 107, 255, 0.28);
}

.about-tags span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about-slider__nav {
  display: none;
}

.about-slider__nav button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.about-slider__nav button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.about-dots {
  display: none;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0;
}

.about-dot.is-active {
  background: linear-gradient(135deg, #4f8bff, #00d1ff);
  border-color: transparent;
}

@media (max-width: 720px) {
  .about-card {
    min-height: 240px;
  }
}

/* About slider: horizontal infinite belt */
#about-gtws {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(79, 139, 255, 0.08), rgba(0, 0, 0, 0)) #050c1c;
  color: var(--text-primary);
}

#about-gtws .about-slides {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.75s ease-out;
  will-change: transform;
}

#about-gtws .about-slide {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)) padding-box, linear-gradient(140deg, rgba(79, 139, 255, 0.22), rgba(0, 96, 255, 0.08)) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#about-gtws .about-slide__inner {
  max-width: 960px;
  width: 100%;
  display: grid;
  gap: 16px;
}

#about-gtws .about-slide__eyebrow {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

#about-gtws .about-slide__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}

#about-gtws .about-slide__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2.6vw, 19px);
  line-height: 1.7;
}

#about-gtws.is-animating {
  cursor: wait;
}

@media (max-width: 768px) {
  #about-gtws {
    height: 100vh;
  }

  #about-gtws .about-slide {
    padding: 24px;
  }

  #about-gtws .about-slide__title {
    font-size: clamp(24px, 7vw, 32px);
  }
}
