@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Gilroy-Bold';
  src: url('../assets/fonts/gilroy-bold.eot'); /* IE 9 Compatibility Mode */
  src: url('../assets/fonts/gilroy-bold.eot?#iefix') format('embedded-opentype'),
    /* IE < 9 */ url('../assets/fonts/gilroy-bold.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../assets/fonts/gilroy-bold.woff')
      format('woff'),
    /* Firefox >= 3.6, any other modern browser */
      url('../assets/fonts/gilroy-bold.ttf') format('truetype'),
    /* Safari, Android, iOS */
      url('../assets/fonts/gilroy-bold.svg#gilroy-bold') format('svg'); /* Chrome < 4, Legacy iOS */
}

:root {
  --bg: #050505;
  --white: #ffffff;
  --card: rgba(199, 196, 196, 0.2);
  --text: #f7f7f5;
  --text-muted: #737373;
  --muted: #bdbdb7;
  --accent: #3bbe1e;
  --accent-dark: #1f781e;
  --gradient: radial-gradient(
    circle at 20% 20%,
    #4bff6b 0%,
    #1a1f10 45%,
    #050505 90%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}

.main-text {
  font-size: clamp(1.1rem, 2.6vw, 1.5625rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gilroy-Bold', 'Inter', 'Segoe UI', system-ui, -apple-system,
    sans-serif;
  font-weight: 400;
}

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

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

blockquote {
  border-left: 5px solid var(--accent);
  margin: 0;
  padding-left: 35px;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.green {
  color: var(--accent);
}

.container {
  width: min(1220px, 100% - 25px);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.4rem 0px 0px 20px;
  font-size: clamp(35px, 3vw, 40px);
  line-height: 1.2;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(247, 247, 245, 0.3);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 40px;
  color: var(--accent);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.primary-nav a {
  color: var(--text);
  font-weight: 500;
}

.ghost-btn,
.accent-btn {
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ghost-btn {
  background: transparent;
  border: 1px solid rgba(247, 247, 245, 0.3);
  color: var(--text);
}

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

.menu-toggle {
  display: none;
  gap: 6px;
  flex-direction: column;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  background-color: transparent;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  background: rgba(179, 179, 179, 1);
  display: block;
}

.hero {
  background: url('../assets/icons/hero-bg.svg') left / contain no-repeat;
  padding: 6rem 0 5rem;
}

.hero-inner {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 3.3rem);
  margin: 0.4rem 0 1rem;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.hero .description {
  max-width: 50rem;
  color: var(--white);
  font-size: 25px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero-media__img {
  width: 85%;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 247, 245, 0.5);
  font-size: 1.2rem;
  backdrop-filter: blur(12px) saturate(140%);
  background: rgba(255, 255, 255, 0.1);
}

.hero-text {
  padding-top: 8rem;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-text h1 {
  font-weight: 400;
}

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

.hero-media {
  margin: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -100px;
  right: 0;
}

.about-container {
  position: relative;
}

.about__img {
  position: absolute;
  right: -80px;
  top: -40px;
}

.image-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(55, 255, 90, 0.8),
    rgba(9, 24, 7, 0.95)
  );
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.text-card {
  background: var(--card);
  backdrop-filter: blur(1px);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.text-card[data-accordion] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-card__toggle {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
}

.text-card__toggle blockquote {
  flex: 1;
  margin: 0;
}

.text-card__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.text-card__icon {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.text-card__icon::before {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
}

[data-accordion].is-open .text-card__icon {
  transform: rotate(180deg);
}

.text-card__accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: none;
  opacity: 1;
}

.benefits-grid,
.audience-grid,
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.inventory-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.inventory-blockquote {
  margin-top: 30px;
  margin-left: 20px;
}

.inventory-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  padding: 30px 35px;
}

.inventory-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 0 50%;
}

.inventory-card h3 {
  font-size: 25px;
  color: var(--accent);
  margin: 0;
}

.inventory-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--white);
}

.inventory-card p {
  margin: 0;
  font-size: 20px;
}

.inventory-card a {
  font-size: 20px;
}

.inventory-card img {
  width: 100%;
  border-radius: 10px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

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

.benefit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.benefit-card__content {
  max-width: 65%;
  position: relative;
  z-index: 1;
}

.benefit-card__content h3 {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 25px;
  line-height: 1.2;
}

.benefit-card__content h3 br {
  display: none;
}

.benefit-card__content p {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.benefit-card__flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.benefit-card__icon {
  height: auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-card__icon__mobile {
  display: none;
}

.audience-grid article {
  background: #c7c4c415;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.audience-grid article h3 {
  color: var(--accent);
  font-size: 25px;
  margin: 0;
}

.audience-grid article p {
  font-size: 20px;
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 30px 20px;
  border-radius: 28px;
  background: #c7c4c415;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  flex: 0 1 calc(40% - 20px);
}

.step-card:nth-child(1),
.step-card:nth-child(4) {
  flex: 0 0 calc(60% - 20px);
}

.step-card__content {
  position: relative;
  z-index: 1;
}

.step-card__content h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 25px;
}

.step-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.step-card__icon {
  width: 110px;
  height: auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.step-card__icon__mobile {
  display: none;
}

.cta {
  padding-bottom: 5rem;
}

.cta-card {
  background: linear-gradient(
    180deg,
    #021002 0%,
    #063808 25%,
    #0d5d10 60%,
    #37ff5b 100%
  );
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-radius: 40px;
  color: #f7f7f5;
  box-shadow: 0 40px 70px rgba(55, 255, 90, 0.35);
  text-align: center;
}

.cta-card__header h2 {
  margin: 0 0 1rem;
  font-size: 40px;
}

.cta-card__header p {
  margin: 0 0 2.5rem;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.2rem;
}

.cta-form__field {
  display: flex;
  flex-direction: column;
}

.cta-form__field-50 {
  grid-column: span 1;
}

.cta-form__field:nth-of-type(1),
.cta-form__field:nth-of-type(2) {
  grid-column: span 1;
}

.cta-form__field--full {
  grid-column: 1 / -1;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.95rem 1.5rem;
  background: rgba(6, 6, 6, 0.15);
  backdrop-filter: blur(12px);
  color: #f7f7f5;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-form textarea {
  border-radius: 24px;
  resize: none;
  min-height: 130px;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.cta-form__submit {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: #f7f7f5;
  color: #041104;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 392px;
  font-size: 1rem;
}

.cta-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  background: #000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.footer-logo {
  font-size: 40px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .menu-content {
  width: min(90vw, 320px);
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(55, 255, 90, 0.1),
    rgba(0, 0, 0, 0.95)
  );
  backdrop-filter: blur(12px);
  padding: 20px 30px 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-left: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a.logo {
  font-size: 35px;
}

.mobile-menu .accent-btn {
  margin-top: auto;
  margin-bottom: 120px;
}

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

@media (max-width: 1140px) {
  .about__img {
    right: 0;
  }
}

@media (max-width: 900px) {
  .logo {
    font-size: 35px;
  }
  .header-btn {
    display: none;
  }
  .primary-nav,
  .site-header .ghost-btn {
    display: none;
  }

  .hero-actions .accent-btn {
    width: 100%;
    text-align: center;
    margin-top: 120px;
  }

  .tags span {
    font-size: 0.8rem;
  }

  .hero {
    background: url('../assets/icons/hero-bg.svg') center / cover no-repeat;
  }

  .hero-media {
    top: 0;
    right: -50px;
  }

  .inventory-card {
    padding: 20px 15px;
    flex-direction: column;
    gap: 20px;
  }

  .hero .description {
    font-size: 20px;
    line-height: 1.2;
  }

  .about__img {
    width: 220px;
    top: 0;
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    width: min(1220px, 100% - 10px);
    margin: 0 auto;
  }

  .benefit-card__content h3 {
    margin-bottom: 0;
  }

  .benefit-card__content h3 br {
    display: block;
  }

  .audience-grid article {
    padding: 20px 15px;
  }

  .text-card__toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-accordion] .text-card__accordion-content {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  [data-accordion].is-open .text-card__accordion-content {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
  }

  .cta-form {
    display: flex;
    flex-direction: column;
  }

  .cta-card__header p {
    font-size: 20px;
  }

  .hero-inner {
    overflow: hidden;
  }

  .benefit-card__icon {
    display: none;
  }

  .benefit-card__icon__mobile {
    display: block;
  }

  .section-header h2 {
    margin: 0.4rem 0px 0px 15px;
  }

  .inventory-blockquote {
    margin-left: 15px;
    padding-left: 12px;
    border-width: 2px;
  }

  .step-card__icon {
    display: none;
  }

  .step-card__icon__mobile {
    display: block;
    width: 70px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.55));
  }
}

@media (max-width: 600px) {
  .cta-form__submit {
    min-width: 100%;
  }
  .hero {
    padding-top: 5rem;
  }

  .hero-inner {
    text-align: left;
  }

  .cta-card {
    padding: 15px 15px 15px 20px;
    border-radius: 15px;
  }

  .steps-grid {
    flex-direction: column;
  }

  .benefit-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .benefit-card__content {
    max-width: 100%;
  }

  .benefit-card__flex {
    margin-bottom: 12px;
  }

  .benefit-card__icon__mobile {
    width: 78px;
  }

  .step-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #1d1d1d 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .step-card__content p {
    color: rgba(255, 255, 255, 0.8);
  }
}
