/* ==========================================================================
   A Força do Esporte — Base + Hero
   ========================================================================== */

:root {
  --color-bg: #011419;
  --color-cyan: #1ad0ff;
  --color-cyan-mid: #15a6cc;
  --color-cyan-deep: #107d99;
  --color-button-ink: #002933;
  --color-white: #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ==========================================================================
   HERO — shared shell
   ========================================================================== */

.hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: var(--color-bg);
  
}

.hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__heading {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.hero__heading-line1,
.hero__heading-line2 {
  display: block;
  line-height: 1.15;
}

.hero__heading-line1 {
  color: var(--color-white);
  font-weight: 400;
}

.hero__heading-line2 {
  color: var(--color-cyan);
  font-weight: 700;
}

.hero__text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

.hero__text strong {
  font-weight: 700;
}

.hero__text-link {
  color: var(--color-cyan);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(
    173deg,
    var(--color-cyan) 22.113%,
    var(--color-cyan-mid) 57.118%,
    var(--color-cyan-deep) 92.123%
  );
  color: var(--color-button-ink);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.hero__cta span {
  white-space: nowrap;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(26, 208, 255, 0.35);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__cta img {
  flex-shrink: 0;
}

.hero__badges {
  display: flex;
  align-items: center;
 flex-direction: row;
  justify-content: start;
}

.hero__badges li {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__badges img {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

/* Entrance motion */

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__panel {
  animation: hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

.hero__cta-block {
  animation: hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__panel,
  .hero__cta-block {
    animation: none;
  }
}

/* ==========================================================================
   DESKTOP TIERS — fixed pixel values matching the Figma frames exactly:
   Large = 2156x1024 / Desktop = 1440x1024 / Laptop = 1024x689.85
   Positions are expressed as % of each frame's own width/height so they
   track the frame proportionally; type sizes, gaps and padding are the
   literal Figma px values for that tier (not fluidly interpolated).
   ========================================================================== */

.hero__stage--mobile,
.hero__stage--laptop,
.hero__stage--large {
  display: none;
}

/* ---- Desktop tier (1280–1919px) — reference frame 1440x1024 ---- */

.hero__stage--desktop .hero__content {
  position: absolute;
  left: 4.861%;
  top: 5.137%;
  width: 39.653%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 46px;
}

.hero__stage--desktop .hero__panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.hero__stage--desktop .hero__heading-line1 {
  font-size: 162px;
  letter-spacing: -4.5px;
}

.hero__stage--desktop .hero__heading-line2 {
  font-size: 90px;
  letter-spacing: -4.5px;
}

.hero__stage--desktop .hero__text {
  font-size: 20px;
  width: 499px;
  max-width: 100%;
}

.hero__stage--desktop .hero__cta-block {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 21px;
}

.hero__stage--desktop .hero__cta {
  gap: 20px;
  padding: 20px 40px;
  border-radius: 4px;
}

.hero__stage--desktop .hero__cta span {
  font-size: 32px;
  letter-spacing: 1.2px;
  line-height: 1;
  display: inline-block;
  padding-top: 0.12em;
}

.hero__stage--desktop .hero__cta img {
  width: 28px;
  height: 28px;
}

.hero__stage--desktop .hero__badges {
  gap: 21px;
}

.hero__stage--desktop .hero__badges li {
  gap: 12px;
  font-size: 20px;
}

.hero__stage--desktop .hero__badges img {
  width: 10px;
  height: 10px;
}

/* ---- Large tier (>=1920px) — reference frame 2156x1024 ---- */

@media (min-width: 1920px) {

  .hero__stage--desktop {
    display: none;
  }

  .hero__stage--large {
    display: block;
  }

  .hero__stage--large .hero__content {
    position: absolute;
    left: 18.367%;
    top: 5.621%;
    width: 26.484%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
  }

  .hero__stage--large .hero__panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 19px;
  }

  .hero__stage--large .hero__heading-line1 {
    font-size: 200px;
    letter-spacing: -4.5px;
  }

  .hero__stage--large .hero__heading-line2 {
    font-size: 90px;
    letter-spacing: -4.5px;
  }

  .hero__stage--large .hero__text {
    font-size: 20px;
    width: 499px;
    max-width: 100%;
  }

  .hero__stage--large .hero__cta-block {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 21px;
  }

  .hero__stage--large .hero__cta {
    gap: 20px;
    padding: 20px 40px;
    border-radius: 4px;
  }

  .hero__stage--large .hero__cta span {
    font-size: 32px;
    letter-spacing: 1.2px;
    line-height: 1;
    display: inline-block;
    padding-top: 0.12em;
  }

  .hero__stage--large .hero__cta img {
    width: 28px;
    height: 28px;
  }

  .hero__stage--large .hero__badges {
    gap: 21px;
  }

  .hero__stage--large .hero__badges li {
    gap: 12px;
    font-size: 20px;
  }

  .hero__stage--large .hero__badges img {
    width: 10px;
    height: 10px;
  }
}

/* ---- Laptop tier (761–1279px) — reference frame 1024x689.85 ---- */

@media (max-width: 1279px) {

  .hero__stage--desktop {
    display: none;
  }

  .hero__stage--laptop {
    display: block;
  }

  .hero__stage--laptop .hero__content {
    position: absolute;
    left: 5.132%;
    top: 11.622%;
    width: 37.566%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 31px;
  }

  .hero__stage--laptop .hero__panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12.8px;
  }

  .hero__stage--laptop .hero__heading-line1 {
    font-size: 134.737px;
    letter-spacing: -3.0316px;
  }

  .hero__stage--laptop .hero__heading-line2 {
    font-size: 60.632px;
    letter-spacing: -3.0316px;
  }

  .hero__stage--laptop .hero__text {
    font-size: 13.474px;
    width: 336.168px;
    max-width: 100%;
  }

  .hero__stage--laptop .hero__cta-block {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14.147px;
  }

  .hero__stage--laptop .hero__cta {
    gap: 15px;
    padding: 15px 30px;
    border-radius: 3px;
  }

  .hero__stage--laptop .hero__cta span {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1;
    display: inline-block;
    padding-top: 0.12em;
  }

  .hero__stage--laptop .hero__cta img {
    width: 20px;
    height: 20px;
  }

  .hero__stage--laptop .hero__badges {
    gap: 14.147px;
  }

  .hero__stage--laptop .hero__badges li {
    gap: 8.084px;
    font-size: 13.474px;
  }

  .hero__stage--laptop .hero__badges img {
    width: 6.737px;
    height: 6.737px;
  }
}

/* ==========================================================================
   MOBILE  (<= 760px)
   ========================================================================== */

@media (max-width: 760px) {

  .hero__stage--desktop,
  .hero__stage--laptop {
    display: none;
  }

  .hero__stage--mobile {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 766px;


  }

  .hero__stage--mobile .hero__bg-image {
    height: 100svh;
    object-position: center top;
  }

  .hero__stage--mobile .hero__panel {
    position: relative;
    z-index: 2;
    margin-top: 56vh;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__stage--mobile .hero__heading-line1 {
    font-size: clamp(52px, 16vw, 78px);
    letter-spacing: 0.12em;
    padding-left: 0.12em;
  }

  .hero__stage--mobile .hero__heading-line2 {
    font-size: clamp(30px, 9.5vw, 44px);
    letter-spacing: -0.02em;
  }

  .hero__stage--mobile .hero__text {
    font-size: clamp(13px, 3.6vw, 16px);
    max-width: 380px;
    margin: 0 auto;
  }

  .hero__stage--mobile .hero__cta-block {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding: 0 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__stage--mobile .hero__cta {
    width: 100%;
    max-width: 420px;
    padding: 13px 14px 16px;
  }

  .hero__stage--mobile .hero__cta span {
    font-size: clamp(19px, 5.8vw, 26px);
    letter-spacing: 0.015em;
    line-height: 1;
    display: inline-block;
    padding-top: 3px;
  }

  .hero__stage--mobile .hero__cta img {
    width: 20px;
    height: 20px;
  }

  .hero__stage--mobile .hero__badges {
    gap: 8px 16px;
  }

  .hero__stage--mobile .hero__badges li {
    gap: 6px;
    font-size: clamp(12px, 3.2vw, 14px);
  }
}

/* ==========================================================================
   O QUE É O MOVIMENTO
   Desktop reference frame: 1440x732 (Figma node 2:140)
   Mobile reference frame: 440x968 (Figma node 3:162)
   ========================================================================== */

.oque {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
}

.oque::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 45% 60% at 31% 54%, rgba(26, 208, 255, 0.16), transparent 70%);
  z-index:0;
}

.oque__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(26, 208, 255, 0.18);
  border-radius: 3px;
  background: transparent;
}

.oque__badge span {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

.oque__badge img {
  flex-shrink: 0;
}

.oque__title {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.2;
}

.oque__title-line1,
.oque__title-line2 {
  display: block;
}

.oque__title-line1 {
  color: var(--color-white);
  font-weight: 400;
}

.oque__title-line2 {
  font-weight: 700;
  background: linear-gradient(to right, var(--color-cyan), var(--color-white));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.oque__text {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-white);
}

.oque__text p {
  margin: 0;
  line-height: 1.5;
}

.oque__text p + p {
  margin-top: 1em;
}

.oque__text strong {
  font-weight: 700;
  color: var(--color-cyan);
}

.oque__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(
    173deg,
    var(--color-cyan) 22.113%,
    var(--color-cyan-mid) 57.118%,
    var(--color-cyan-deep) 92.123%
  );
  color: var(--color-button-ink);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.oque__cta span {
  white-space: nowrap;
}

.oque__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(26, 208, 255, 0.35);
}

.oque__cta:active {
  transform: translateY(0);
}

.oque__cta img {
  flex-shrink: 0;
}

.oque__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.oque__badges li {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
}

.oque__badges img {
  flex-shrink: 0;
}

/* ---- Desktop (>760px) ---- */

@media (min-width: 761px) {

  .oque__stage--mobile {
    display: none;
  }

  .oque__stage--desktop {
    padding: clamp(40px, 6vw, 90px) 7.014% 0 7.639%;
  }

  .oque__row {
    display: flex;
    align-items: center;
    gap: 1.22%;
  }

  .oque__media {
    flex: 0 0 52.32%;
    align-self: flex-end;
    aspect-ratio: 643 / 732;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;

  }

  .oque__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oque__content {
    flex: 0 0 46.46%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding-bottom: clamp(40px, 6vw, 90px);
  }

  .oque__badge span {
    font-size: 20px;
    letter-spacing: 3.2px;
  }

  .oque__badge img {
    width: 27px;
    height: 16px;
  }

  .oque__title {
    font-size: 65px;
    letter-spacing: -3.25px;
  }

  .oque__text {
    font-size: 20px;
    width: 522px;
    max-width: 100%;
  }

  .oque__cta-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 62%;
    gap: 21px;
    z-index: 2;
  }

  .oque__cta {
    gap: 20px;
    padding: 20px 40px;
    border-radius: 4px;
  }

  .oque__cta span {
    font-size: 32px;
    letter-spacing: 1.2px;
    line-height: 1;
    display: inline-block;
    padding-top: 0.12em;
  }

  .oque__cta img {
    width: 28px;
    height: 28px;
  }

  .oque__badges {
    gap: 21px;
  }

  .oque__badges li {
    gap: 12px;
    font-size: 20px;
  }

  .oque__badges img {
    width: 10px;
    height: 10px;
  }
}

/* ---- Laptop/tablet (761–1279px) — scaled down from the 1440 reference ---- */

@media (min-width: 761px) and (max-width: 1279px) {

  .oque__content {
    gap: 25px;
  }

  .oque__badge span {
    font-size: 14px;
    letter-spacing: 2.3px;
  }

  .oque__badge img {
    width: 19px;
    height: 11px;
  }

  .oque__title {
    font-size: 46px;
    letter-spacing: -2.3px;
  }

  .oque__text {
    font-size: 14px;
    width: 371px;
  }

  .oque__cta-block {
    gap: 15px;
  }

  .oque__cta {
    gap: 15px;
    padding: 15px 30px;
    border-radius: 3px;
  }

  .oque__cta span {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .oque__cta img {
    width: 20px;
    height: 20px;
  }

  .oque__badges {
    gap: 15px;
  }

  .oque__badges li {
    gap: 8.5px;
    font-size: 14px;
  }

  .oque__badges img {
    width: 7px;
    height: 7px;
  }
}

/* ---- Mobile (<=760px) ---- */

@media (max-width: 760px) {

  .oque__stage--desktop {
    display: none;
  }

  .oque__stage--mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px 38px;
  }

  .oque__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 7.9545vw, 35px);
  }

  .oque__badge span {
    font-size: clamp(16px, 4.545vw, 20px);
    letter-spacing: clamp(2.6px, 0.727vw, 3.2px);
  }

  .oque__badge img {
    width: clamp(22px, 6.136vw, 27px);
    height: clamp(13px, 3.636vw, 16px);
  }

  .oque__title {
    font-size: clamp(30px, 9.545vw, 42px);
    letter-spacing: -2.1px;
  }

  .oque__text {
    font-size: clamp(14px, 3.636vw, 16px);
    width: 401px;
    max-width: 100%;
  }

  .oque__media {
    width: 100%;
    aspect-ratio: 643 / 732;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: -27px;
    z-index: 2;
  }

  .oque__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oque__cta-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(14px, 4.098vw, 18.031px);
    z-index: 2;
  }

  .oque__cta {
    gap: clamp(14px, 4.164vw, 18.321px);
    padding: clamp(14px, 4.164vw, 18.321px) clamp(28px, 8.328vw, 36.642px);
    border-radius: 3.664px;
  }

  .oque__cta span {
    font-size: clamp(22px, 6.662vw, 29.314px);
    letter-spacing: 1.1725px;
    line-height: 1.5;
  }

  .oque__cta img {
    width: clamp(19px, 5.596vw, 24.621px);
    height: clamp(19px, 5.596vw, 24.621px);
  }

  .oque__badges {
    gap: clamp(14px, 4.091vw, 18px);
  }

  .oque__badges li {
    gap: clamp(8px, 2.342vw, 10.304px);
    font-size: clamp(14px, 3.903vw, 17.173px);
  }

  .oque__badges img {
    width: clamp(7px, 1.951vw, 8.586px);
    height: clamp(7px, 1.951vw, 8.586px);
  }
}

/* ==========================================================================
   INSTAGRAM — recent posts (placeholder data, ready to wire to a real feed)
   ========================================================================== */

.insta {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow: hidden;
  padding: clamp(56px, 8vw, 120px) 0;
}

.insta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(26, 208, 255, 0.14), transparent 70%);
  z-index: 0;
}

.insta__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 35px);
  text-align: center;
  padding: 0 24px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.insta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(26, 208, 255, 0.18);
  border-radius: 3px;
  background: transparent;
}

.insta__badge span {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: clamp(2.3px, 0.22vw, 3.2px);
}

.insta__badge img {
  flex-shrink: 0;
  width: clamp(18px, 1.3vw, 20px);
  height: clamp(18px, 1.3vw, 20px);
}

.insta__title {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.2;
}

.insta__title-line1,
.insta__title-line2 {
  display: block;
}

.insta__title-line1 {
  color: var(--color-white);
  font-weight: 400;
}

.insta__title-line2 {
  font-weight: 700;
  background: linear-gradient(to right, var(--color-cyan), var(--color-white));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.insta__title {
  font-size: clamp(30px, 4.6vw, 65px);
  letter-spacing: -0.045em;
}

.insta__card {
  position: relative;
  display: block;
  aspect-ratio: 1080 / 1350;
  border-radius: 9px;
  overflow: hidden;
  text-decoration: none;
  background: var(--color-button-ink);
}

.insta__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insta__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(1, 20, 25, 0) 45%, rgba(1, 20, 25, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta__card-overlay img {
  width: 30px;
  height: 30px;
}

.insta__card:hover .insta__card-photo {
  transform: scale(1.06);
}

.insta__card:hover .insta__card-overlay {
  opacity: 1;
}

.insta__card--video {
  background: #000;
}

.insta__card--video video {
  cursor: pointer;
}

.insta__card-ig {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1, 20, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.insta__card-ig img {
  width: 18px;
  height: 18px;
}

.insta__card-ig:hover {
  background: rgba(1, 20, 25, 0.8);
  transform: scale(1.08);
}

.insta__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(
    173deg,
    var(--color-cyan) 22.113%,
    var(--color-cyan-mid) 57.118%,
    var(--color-cyan-deep) 92.123%
  );
  color: var(--color-button-ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(1, 20, 25, 0.45), 0 0 0 8px rgba(1, 20, 25, 0.25);
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.2s ease;
}

.insta__play svg {
  margin-left: 3px;
}

.insta__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  filter: brightness(1.06);
}

.insta__play:active {
  transform: translate(-50%, -50%) scale(0.96);
}

.insta__card--video.is-playing .insta__play {
  opacity: 0;
  pointer-events: none;
}

.insta__card--video video::-webkit-media-controls-timeline,
.insta__card--video video::-webkit-media-controls-volume-slider {
  display: none;
}

/* ---- Desktop grid (>760px) ---- */

@media (min-width: 761px) {

  .insta__carousel {
    display: none;
  }

  .insta__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(10px, 1.4vw, 21px);
    padding: 0 7.014% 0 7.639%;
  }
}

/* ---- Mobile carousel (<=760px) ---- */

@media (max-width: 760px) {

  .insta__grid {
    display: none;
  }

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

  .insta__carousel-viewport {
    overflow: hidden;
    border-radius: 9px;
  }

  .insta__carousel-track {
    display: flex;
    gap: 12px;
    padding-left: 20px;
    touch-action: pan-y;
  }

  .insta__carousel-track.is-dragging {
    transition: none;
  }

  .insta__carousel-track:not(.is-dragging) {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .insta__slide {
    flex: 0 0 85%;
    min-width: 0;
  }

  .insta__carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
  }

  .insta__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(26, 208, 255, 0.3);
    background: rgba(26, 208, 255, 0.08);
    color: var(--color-cyan);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .insta__arrow:hover {
    background: rgba(26, 208, 255, 0.18);
  }

  .insta__arrow:active {
    transform: scale(0.92);
  }

  .insta__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .insta__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .insta__dot--active {
    background: var(--color-cyan);
    transform: scale(1.35);
  }
}

/* ==========================================================================
   CTA — final call to action
   ========================================================================== */

.cta {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  padding: clamp(16px, 2.4vw, 32px) 20px clamp(48px, 7vw, 100px);
}

.cta::before {
  content: '';
  position: absolute;
  top: -22%;
  left: 50%;
  width: min(1000px, 90vw);
  height: 80%;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 50% 55% at 50% 40%, rgba(26, 208, 255, 0.22), transparent 70%);
  z-index: 0;
}

.cta__card {
  position: relative;
  z-index: 1;
  max-width: 1126px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 2.4vw, 28px);
  background: linear-gradient(180deg, #002933, #00141a);
  border: 1px solid var(--color-cyan);
  border-radius: 20px;
  padding: clamp(28px, 4.5vw, 56px) clamp(20px, 5vw, 64px);
  box-shadow: 0 0 90px rgba(26, 208, 255, 0.16), 0 0 0 1px rgba(26, 208, 255, 0.06) inset;
}

.cta__title {
  margin: 0;
  max-width: 941px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.2;
  font-size: clamp(28px, 4.2vw, 60.74px);
  letter-spacing: -0.05em;
}

.cta__title-line1 {
  color: var(--color-white);
  font-weight: 400;
}

.cta__title-line2 {
  color: var(--color-cyan);
  font-weight: 700;
}

.cta__subtitle {
  margin: 0;
  max-width: 774px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  font-size: clamp(16px, 1.8vw, 32px);
}

.cta__subtitle strong {
  font-weight: 700;
  color: var(--color-cyan);
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 21px);
  padding: clamp(14px, 1.6vw, 25.85px) clamp(24px, 3.2vw, 51.7px);
  background: linear-gradient(
    173deg,
    var(--color-cyan) 22.113%,
    var(--color-cyan-mid) 57.118%,
    var(--color-cyan-deep) 92.123%
  );
  color: var(--color-button-ink);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.5;
  border-radius: clamp(4px, 0.5vw, 5.17px);
  font-size: clamp(19px, 2.4vw, 41.36px);
  letter-spacing: clamp(1px, 0.13vw, 1.65px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.cta__button span {
  white-space: nowrap;
}

.cta__button img {
  flex-shrink: 0;
  width: clamp(20px, 2vw, 34.7px);
  height: clamp(20px, 2vw, 34.7px);
}

.cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(26, 208, 255, 0.35);
}

.cta__button:active {
  transform: translateY(0);
}

.cta__disclaimer {
  margin: 0;
  max-width: 562px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.85;
  font-size: clamp(13px, 1.2vw, 20px);
}
