/* ============================================================
   ORIGIN GYM — styles.css
============================================================ */

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --off-white: #f2f2f0;
  --border-light: #e5e5e3;
  --grey-mid: #888;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
  --section-py: clamp(5rem, 10vw, 8rem);
}

/* ============================================================
   RESET & BASE
============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

blockquote {
  font-style: normal;
}

/* ============================================================
   LAYOUT
============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.section--light {
  background: var(--white);
  color: var(--black);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

/* Noise texture overlay on dark sections */
.section--noise {
  position: relative;
}

.section--noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.section--noise > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
}

.label--light {
  color: rgba(255, 255, 255, 0.4);
}

.section-header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-header--light .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.75;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--black:hover {
  background: transparent;
  color: var(--black);
}

/* ============================================================
   NAVIGATION
============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  transition:
    background 0.35s ease,
    padding 0.35s ease,
    backdrop-filter 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.22s ease;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    outline 0.22s ease;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: transparent;
  color: var(--white);
  outline: 1px solid var(--white);
}

/* ============================================================
   HERO
============================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Hero background photo: drop images/hero.jpg in your project and uncomment the line below */
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.8) 100%), url('images/hero.jpg') center/cover no-repeat; */
  background: radial-gradient(ellipse at 50% 40%, #191919 0%, var(--black) 68%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative concentric circles — references the "O" in ORIGIN */
.hero__circle {
  position: absolute;
  width: min(80vw, 680px);
  height: min(80vw, 680px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__circle::before {
  content: "";
  position: absolute;
  inset: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.hero__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__sub {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Title slides up from behind a clipping container */
.hero__title-clip {
  overflow: hidden;
  line-height: 0.9;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 21vw, 19rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
  transform: translateY(110%);
  display: block;
  animation: slideUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}

.hero__tagline {
  margin-top: 1.75rem;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.hero__btn {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.95s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  opacity: 0;
  animation: fadeUp 0.6s ease 1.4s forwards;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.hero__scroll-indicator.is-hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.hero__arrow {
  animation: bounce 2s ease-in-out infinite;
}

/* ============================================================
   FEATURES
============================================================ */

.features {
  padding-block: var(--section-py);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.feature-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.22s ease;
}

.feature-card:hover {
  background: var(--off-white);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ============================================================
   TEAM
============================================================ */

.team {
  padding-block: var(--section-py);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.team-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.team-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
}

.team-card__photo {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}

.team-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1d1d1d 0%, #131313 100%);
}

.team-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.team-card__body {
  padding: 1.5rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
}

/* ============================================================
   STATS
============================================================ */

.stats {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border-light);
}

.stat-item__number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
}

.stat-item__suffix {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  color: var(--black);
  opacity: 0.35;
}

.stat-item__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ============================================================
   REVIEWS
============================================================ */

.reviews {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  overflow: hidden;
}

.reviews__wrap {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.reviews__wrap::-webkit-scrollbar {
  display: none;
}

.reviews__wrap.is-grabbing {
  cursor: grabbing;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: 0.5rem;
}

.review-card {
  width: min(420px, 78vw);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 2.5rem;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.review-card__stars {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.review-card__quote {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
}

.review-card__author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   PRICING
============================================================ */

.pricing {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-light);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}

.pricing-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  transition: background 0.22s ease;
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-card--featured {
  background: var(--black);
  color: var(--white);
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pricing-card--featured .pricing-card__tier {
  color: var(--white);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card--featured .pricing-card__price {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.pricing-card__period {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-mid);
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  margin-bottom: 2.5rem;
}

.pricing-card__features li {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-mid);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--grey-mid);
  font-size: 0.75rem;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card--featured .pricing-card__features li::before {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-card__cta {
  align-self: flex-start;
}

@media (max-width: 760px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
    background: var(--border-light);
  }

  .pricing-card {
    border-right: none;
    border: none;
  }
}

/* ============================================================
   INSTAGRAM
============================================================ */

.instagram {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.instagram__feed {
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

/* Behold widget overrides — keeps it flush with the page */
behold-widget {
  display: block;
}

/* Placeholder shown before Behold is connected */
.instagram__placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.instagram__placeholder-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ============================================================
   FAQ
============================================================ */

.faq {
  padding-block: var(--section-py);
}

.faq__list {
  border-top: 1px solid var(--border-light);
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  color: var(--grey-mid);
  transition:
    transform 0.22s ease,
    color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--black);
}

.faq-item summary:hover {
  color: var(--black);
}

.faq-item summary:hover::after {
  color: var(--black);
}

.faq-item__answer {
  padding-bottom: 1.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.8;
  max-width: 640px;
}

/* ============================================================
   FIND US
============================================================ */

.find-us {
  padding-block: var(--section-py);
}

.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.find-us__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.find-us__block-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.75rem;
}

.find-us__address {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.find-us__hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.find-us__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.find-us__hours li:last-child {
  border-bottom: none;
}

.find-us__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.find-us__contact + .find-us__contact {
  margin-top: 0.6rem;
}

.find-us__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

.find-us__contact:hover {
  opacity: 0.65;
}

.find-us__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.find-us__map-placeholder {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.find-us__pin {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.4);
}

.find-us__map-text {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .find-us__grid {
    grid-template-columns: 1fr;
  }

  .find-us__map {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   JOIN / CTA
============================================================ */

.join {
  padding-block: var(--section-py);
}

.join__inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
}

.join__inner .label {
  margin-bottom: 0.75rem;
}

.join__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.join__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.join__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  padding-block: 3rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__social:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer__bottom {
  padding-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   KEYFRAMES
============================================================ */

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE — 900px breakpoint
============================================================ */

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team__grid .team-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.875rem);
  }
}

/* ============================================================
   RESPONSIVE — 600px breakpoint
============================================================ */

@media (max-width: 600px) {
  .nav__links li:not(:last-child) {
    display: none;
  }

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

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

  .team__grid .team-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-item {
    padding-block: 3rem;
  }

  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__nav {
    gap: 1.25rem;
  }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

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

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

  .hero__title {
    transform: translateY(0);
  }

  .hero__eyebrow,
  .hero__tagline,
  .hero__btn,
  .hero__scroll-indicator {
    opacity: 1;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__arrow {
    animation: none;
  }
}

/* ============================================================
   COOKIE BANNER
============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 1.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  width: min(640px, calc(100vw - 2rem));
  z-index: 200;
}

.cookie-banner__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}
