/* FONTS */
@font-face {
  font-family: 'AGRESSIVE';
  src: url('/en/storage/blogs/AGRESSIVE.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: #2c2c2c;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 60px 40px;
  width: 100%;
  max-width: 100%;
}

.hero__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 80px;
}

.badge {
  width: 80px;
  height: 80px;
}

.hero__pill {
  position: absolute;
  top: 60px;
  right: 40px;
}

.hero__pill img {
  height: 70px;
  width: auto;
}

.hero__text {
  max-width: 600px;
  padding-left: 0;
}

.hero__text h1 {
  font-family: 'AGRESSIVE', sans-serif;
  color: #fff;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero__lead {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero__body {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 28px;
}

.btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 100;
}

.btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* FLOATING CARD */
.floating-card {
  margin-top: -180px;
  position: relative;
  z-index: 10;
  margin-bottom: -80px;
}

.card {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: 5%;
}

.card__badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.card__badge img {
  height: 70px;
  width: auto;
}

.card__image {
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}

.section--white {
  background: white;
}

.section--sand {
  background: #f6eee2;
}

.section--solid-body {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .grid--reverse {
    direction: rtl;
  }
  
  .grid--reverse > * {
    direction: ltr;
  }
}

.grid__image {
  text-align: center;
}

.grid__image img {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  top: -60px;
}

.grid__image--small img {
  max-width: 220px;
  top: 0;
}

.grid__image--solid img {
  max-width: 280px;
  top: 0;
}

.grid__image--large img {
  max-width: 450px;
  top: 0;
}

.grid__content {
  position: relative;
  padding: 40px 20px;
  z-index: 1;
}

.grid__content--left {
  text-align: left;
}

.grid__content--center {
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}

.grid__content--right {
  text-align: right;
}

.watermark {
  position: absolute;
  top: -60px;
  right: -20px;
  font-size: clamp(140px, 16vw, 200px);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.watermark--left {
  right: auto;
  left: -20px;
}

.grid__content--center .watermark {
  left: 50%;
  transform: translateX(-50%);
}

.eyebrow {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: #ff8000;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff8000;
}

.grid__content--center .eyebrow {
  display: block;
}

.grid__content--center .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.grid__content--right .eyebrow {
  display: block;
  text-align: right;
}

.grid__content--right .eyebrow::after {
  left: auto;
  right: 0;
}

.grid__content--right .body {
  margin-left: auto;
  margin-right: 0;
}

.grid__content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #7a7a7a;
  max-width: 420px;
}

.grid__content--center .body {
  margin: 0 auto;
}

/* ICONS */
.icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}

@media (min-width: 640px) {
  .icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .icons {
    grid-template-columns: repeat(6, 1fr);
  }
}

.icon {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.icon p {
  font-size: 12px;
  font-weight: 700;
  color: rgba(44,44,44,0.8);
  line-height: 1.4;
}

/* INTRO TEXT */
.intro {
  text-align: center;
  font-size: 14px;
  color: #7a7a7a;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* TEAM */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team__card {
  text-align: center;
}

.team__card img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
}

.team__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(44,44,44,0.6);
  margin-bottom: 12px;
}

.team__langs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}

.team__links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
}

.team__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.05);
  border-radius: 50px;
  color: rgba(44,44,44,0.7);
  transition: all 0.2s;
}

.team__links a:hover {
  background: rgba(0,0,0,0.1);
  color: #2c2c2c;
}

.team__links a span {
  display: none;
}

@media (min-width: 640px) {
  .team__links a span {
    display: inline;
  }
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .hero__pill {
    display: none;
  }
  
  .floating-card {
    margin-top: -120px;
    margin-bottom: -40px;
  }
  
  .section {
    padding: 60px 0;
  }
}
