/* =====================================================
   ASBILY ABOUT PAGE
   Complete CSS
===================================================== */

:root {
  --black: #000;
  --white: #fff;
  --text: #111;
  --muted: #666;
  --soft: #f6f6f6;
  --border: #e5e5e5;
  --dark-border: #292929;

  --max-width: 1180px;

  --radius: 18px;

  --transition: 0.3s ease;
}


/* =====================================================
   RESET
===================================================== */

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


html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--white);
  color: var(--text);

  line-height: 1.7;

  overflow-x: hidden;
}


body.menu-open {
  overflow: hidden;
}


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


button {
  font: inherit;
}


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


.container {
  width: min(
    calc(100% - 40px),
    var(--max-width)
  );

  margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: sticky;
  top: 0;

  z-index: 1000;

  background: rgba(
    255,
    255,
    255,
    0.94
  );

  backdrop-filter: blur(15px);

  border-bottom: 1px solid var(--border);

  transition: box-shadow var(--transition);
}


.site-header.scrolled {
  box-shadow:
    0 8px 30px
    rgba(0, 0, 0, 0.07);
}


.nav-wrapper {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 20px;

  font-weight: 800;

  letter-spacing: -0.5px;

  cursor: pointer;

  user-select: none;
}


.logo-icon,
.logo-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo-icon {
  display: grid;
  place-items: center;

  background: var(--black);
  color: var(--white);

  border-radius: 9px;

  font-size: 16px;

  font-weight: 900;
}


.navigation {
  display: flex;

  align-items: center;

  gap: 18px;
}


.navigation a {
  position: relative;

  color: #555;

  font-size: 13px;

  font-weight: 650;

  transition: color var(--transition);
}


.navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--black);

  transition: width var(--transition);
}


.navigation a:hover,
.navigation a.active {
  color: var(--black);
}


.navigation a:hover::after,
.navigation a.active::after {
  width: 100%;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-button {
  display: none;

  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: var(--white);

  cursor: pointer;

  touch-action: manipulation;
}


.menu-button span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 4px auto;

  background: var(--black);

  transition: transform var(--transition);
}


.menu-button.open span:nth-child(1) {
  transform:
    translateY(6px)
    rotate(45deg);
}


.menu-button.open span:nth-child(2) {
  opacity: 0;
}


.menu-button.open span:nth-child(3) {
  transform:
    translateY(-6px)
    rotate(-45deg);
}


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

.hero {
  min-height: 680px;

  display: flex;

  align-items: center;

  border-bottom: 1px solid var(--border);

  background:
    radial-gradient(
      circle at 85% 15%,
      #ededed 0,
      transparent 30%
    ),
    var(--white);
}


.hero-container {
  padding: 110px 0;
}


.hero-label,
.small-label {
  display: inline-block;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #777;
}


.hero-label {
  margin-bottom: 25px;
}


.hero h1 {
  max-width: 900px;

  font-size:
    clamp(
      50px,
      8vw,
      95px
    );

  line-height: 0.98;

  letter-spacing: -5px;

  margin-bottom: 35px;
}


.hero h1 span {
  display: block;

  color: #777;
}


.hero-description {
  max-width: 720px;

  color: var(--muted);

  font-size: 19px;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}


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

.button {
  min-height: 50px;

  padding:
    0 23px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  font-size: 14px;

  font-weight: 750;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}


.button:hover {
  transform: translateY(-2px);
}


.button-black {
  background: var(--black);

  color: var(--white);
}


.button-black:hover {
  background: #222;
}


.button-outline {
  border: 1px solid var(--border);

  background: var(--white);
}


.button-outline:hover {
  border-color: var(--black);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
  padding: 110px 0;
}


.gray-section {
  background: var(--soft);
}


.dark-section {
  background: #090909;

  color: var(--white);
}


.section-title {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 60px;
}


.section-title > span {
  min-width: 25px;

  padding-top: 8px;

  color: #888;

  font-size: 11px;

  font-weight: 850;
}


.section-title h2 {
  font-size:
    clamp(
      34px,
      5vw,
      58px
    );

  line-height: 1.05;

  letter-spacing: -2.5px;
}


.dark-title h2 {
  color: var(--white);
}


/* =====================================================
   ABOUT
===================================================== */

.two-column {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;
}


.big-paragraph {
  font-size:
    clamp(
      25px,
      4vw,
      40px
    );

  line-height: 1.25;

  letter-spacing: -1px;
}


.text-content p {
  color: var(--muted);

  margin-bottom: 22px;
}


/* =====================================================
   STORY
===================================================== */

.story-card {
  display: grid;

  grid-template-columns:
    210px 1fr;

  gap: 50px;

  padding: 55px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.story-year {
  font-size: 55px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -3px;
}


.story-content h3 {
  margin:
    12px 0 18px;

  font-size: 30px;

  letter-spacing: -1px;
}


.story-content p {
  color: var(--muted);

  margin-bottom: 15px;
}


/* =====================================================
   CARDS
===================================================== */

.card-grid.two {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px;
}


.info-card {
  padding: 45px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.info-card:hover {
  transform: translateY(-4px);

  border-color: #aaa;
}


.number-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  background: var(--black);

  color: var(--white);

  border-radius: 12px;

  font-weight: 900;

  margin-bottom: 28px;
}


.info-card h3 {
  font-size: 30px;

  margin-bottom: 13px;
}


.info-card p {
  color: var(--muted);
}


/* =====================================================
   SERVICES
===================================================== */

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--dark-border);
}


.service-card {
  padding: 35px 25px;

  border-right:
    1px solid var(--dark-border);

  border-bottom:
    1px solid var(--dark-border);
}


.service-card:nth-child(3n) {
  border-right: 0;
}


.service-card > span {
  color: #777;

  font-size: 11px;

  font-weight: 800;
}


.service-card h3 {
  margin:
    23px 0 10px;

  font-size: 23px;

  line-height: 1.2;
}


.service-card p {
  color: #999;

  font-size: 14px;
}


/* =====================================================
   BUSINESS
===================================================== */

.business-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--border);
}


.business-grid div {
  padding: 25px 5px;

  font-size: 18px;

  font-weight: 750;

  border-bottom:
    1px solid var(--border);
}


/* =====================================================
   VALUES
===================================================== */

.values-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


.values-grid article {
  padding: 35px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.values-grid span {
  color: #888;

  font-size: 11px;

  font-weight: 800;
}


.values-grid h3 {
  font-size: 23px;

  margin:
    18px 0 8px;
}


.values-grid p {
  color: var(--muted);

  font-size: 14px;
}


/* =====================================================
   AUDIENCE
===================================================== */

.audience-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


.audience-grid > div {
  padding: 30px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.audience-grid strong {
  display: block;

  font-size: 21px;

  margin-bottom: 7px;
}


.audience-grid p {
  color: var(--muted);

  font-size: 14px;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.process-item {
  padding: 30px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.process-number {
  font-size: 12px;

  font-weight: 850;

  color: #888;
}


.process-item h3 {
  margin:
    18px 0 9px;

  font-size: 24px;
}


.process-item p {
  color: var(--muted);

  font-size: 14px;
}


/* =====================================================
   PRODUCTS
===================================================== */

.section-intro {
  max-width: 700px;

  color: var(--muted);

  font-size: 19px;

  margin-bottom: 40px;
}


.product-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;
}


.product-card {
  padding: 40px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);

  transition:
    transform var(--transition),
    border-color var(--transition);
}


.product-card:hover {
  transform: translateY(-5px);

  border-color: #999;
}


.product-type {
  color: #777;

  font-size: 10px;

  font-weight: 850;

  letter-spacing: 1.5px;
}


.product-card h3 {
  margin:
    22px 0 13px;

  font-size: 28px;

  line-height: 1.2;

  letter-spacing: -1px;
}


.product-card p {
  color: var(--muted);

  margin-bottom: 25px;
}


.product-card a {
  font-size: 14px;

  font-weight: 800;
}


/* =====================================================
   ECOSYSTEM
===================================================== */

.ecosystem-intro {
  max-width: 720px;

  color: #999;

  margin-bottom: 40px;
}


.ecosystem-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--dark-border);
}


.ecosystem-grid > * {
  min-height: 145px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid var(--dark-border);

  border-bottom:
    1px solid var(--dark-border);

  transition:
    background var(--transition);
}


.ecosystem-grid > *:nth-child(4n) {
  border-right: 0;
}


.ecosystem-grid a:hover {
  background: #151515;
}


.ecosystem-grid span {
  color: #666;

  font-size: 11px;
}


.ecosystem-grid strong {
  font-size: 22px;
}


.ecosystem-grid small {
  color: #777;

  font-size: 12px;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-box {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--border);
}


.technology-box > div {
  padding: 30px 5px;

  border-bottom:
    1px solid var(--border);
}


.technology-box strong {
  display: block;

  font-size: 21px;
}


.technology-box span {
  color: var(--muted);

  font-size: 13px;
}


/* =====================================================
   SECURITY
===================================================== */

.security-content {
  display: grid;

  grid-template-columns:
    90px 1fr;

  gap: 35px;

  padding: 45px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.security-icon {
  width: 65px;
  height: 65px;

  display: grid;
  place-items: center;

  background: var(--black);

  color: var(--white);

  border-radius: 50%;

  font-size: 25px;

  font-weight: 900;
}


.security-content h3 {
  font-size: 27px;

  margin-bottom: 10px;
}


.security-content p {
  max-width: 700px;

  color: var(--muted);

  margin-bottom: 18px;
}


.security-content a {
  font-size: 14px;

  font-weight: 800;
}


/* =====================================================
   ROADMAP
===================================================== */

.roadmap {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


.roadmap-item {
  padding: 35px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.roadmap-item.active {
  border-color: var(--black);
}


.roadmap-item > span {
  font-size: 10px;

  font-weight: 900;

  letter-spacing: 1.5px;

  color: #777;
}


.roadmap-item h3 {
  margin:
    18px 0 9px;

  font-size: 23px;
}


.roadmap-item p {
  color: var(--muted);

  font-size: 14px;
}


/* =====================================================
   MILESTONES
===================================================== */

.timeline {
  max-width: 900px;

  border-top:
    1px solid var(--border);
}


.timeline-item {
  display: grid;

  grid-template-columns:
    130px 1fr;

  gap: 30px;

  padding: 30px 0;

  border-bottom:
    1px solid var(--border);
}


.timeline-year {
  font-weight: 850;

  color: #777;
}


.timeline-item h3 {
  font-size: 22px;

  margin-bottom: 5px;
}


.timeline-item p {
  color: var(--muted);

  font-size: 14px;
}


/* =====================================================
   FOUNDER
===================================================== */

.founder-card {
  display: grid;

  grid-template-columns:
    220px 1fr;

  gap: 60px;

  align-items: center;

  padding: 55px;

  border:
    1px solid var(--border);

  border-radius: var(--radius);
}


.founder-avatar {
  width: 180px;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #030303;

  border: 3px solid #1f2937;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);

  overflow: hidden;

  flex-shrink: 0;
}


.founder-avatar img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 20%;

  border-radius: 50%;

  display: block;
}


.founder-information h3 {
  font-size: 45px;

  letter-spacing: -2px;

  margin:
    8px 0 14px;
}


.founder-information > p {
  max-width: 760px;

  color: var(--muted);
}


.founder-details {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;

  margin-top: 35px;
}


.founder-details div {
  padding-top: 15px;

  border-top:
    1px solid var(--border);
}


.founder-details span {
  display: block;

  color: #777;

  font-size: 10px;

  margin-bottom: 5px;
}


.founder-details strong {
  font-size: 13px;
}


/* =====================================================
   COMPANY INFORMATION
===================================================== */

.company-information {
  border-top:
    1px solid var(--border);
}


.company-information > div {
  display: grid;

  grid-template-columns:
    230px 1fr;

  gap: 30px;

  padding: 24px 0;

  border-bottom:
    1px solid var(--border);
}


.company-information span {
  color: #777;

  font-size: 13px;
}


.company-information strong {
  font-size: 14px;
}


/* =====================================================
   GLOBAL BOX
===================================================== */

.global-box {
  padding: 70px;

  background: var(--black);

  color: var(--white);

  border-radius: var(--radius);
}


.global-box h2 {
  max-width: 900px;

  margin:
    18px 0 25px;

  font-size:
    clamp(
      40px,
      6vw,
      72px
    );

  line-height: 1;

  letter-spacing: -3px;
}


.global-box h2 span {
  color: #777;
}


.global-box p {
  max-width: 680px;

  color: #aaa;
}


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

.faq {
  max-width: 900px;
}


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


.faq-question {
  width: 100%;

  min-height: 75px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border: 0;

  background: transparent;

  color: var(--text);

  text-align: left;

  cursor: pointer;

  font-size: 17px;

  font-weight: 750;
}


.faq-question b {
  flex-shrink: 0;

  font-size: 26px;

  font-weight: 400;

  transition:
    transform var(--transition);
}


.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.35s ease;
}


.faq-answer p {
  overflow: hidden;

  color: var(--muted);

  font-size: 14px;
}


.faq-item.open
.faq-answer {
  grid-template-rows: 1fr;
}


.faq-item.open
.faq-question b {
  transform: rotate(45deg);
}


.faq-item.open
.faq-answer p {
  padding-bottom: 25px;
}


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

.cta {
  padding: 120px 0;

  background: var(--black);

  color: var(--white);

  text-align: center;
}


.cta-content {
  max-width: 850px;
}


.cta-content > span {
  color: #777;

  font-size: 11px;

  font-weight: 850;

  letter-spacing: 2px;
}


.cta h2 {
  margin:
    20px 0;

  font-size:
    clamp(
      43px,
      6vw,
      75px
    );

  line-height: 1;

  letter-spacing: -3px;
}


.cta p {
  max-width: 650px;

  margin:
    0 auto 30px;

  color: #999;
}


.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;
}


.button-white {
  background: var(--white);

  color: var(--black);
}


.button-dark-outline {
  border:
    1px solid #444;

  color: var(--white);
}


.button-dark-outline:hover {
  border-color: var(--white);
}


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

.footer {
  padding: 70px 0 25px;

  background: #050505;

  color: var(--white);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1fr;

  gap: 50px;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}


.footer-about p {
  max-width: 390px;

  color: #777;

  font-size: 14px;
}


.footer-column h4 {
  margin-bottom: 18px;

  font-size: 14px;
}


.footer-column a {
  display: block;

  width: fit-content;

  margin-bottom: 9px;

  color: #777;

  font-size: 13px;

  transition: color var(--transition);
}


.footer-column a:hover {
  color: var(--white);
}


.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 60px;

  padding-top: 25px;

  border-top:
    1px solid #222;
}


.footer-bottom p {
  color: #ffffff;

  font-size: 12px;
}


#backToTop {
  border: 0;

  background: transparent;

  color: #aaa;

  cursor: pointer;

  font-size: 13px;

  font-weight: 600;

  min-height: 44px;

  padding: 10px 16px;

  display: inline-flex;

  align-items: center;

  border-radius: 8px;

  touch-action: manipulation;

  transition: all var(--transition);
}


#backToTop:hover,
#backToTop:focus-visible {
  color: var(--white);

  background: rgba(255, 255, 255, 0.1);
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1050px) {

  .navigation {
    gap: 12px;
  }


  .navigation a {
    font-size: 12px;
  }

}


@media (max-width: 950px) {

  .two-column {
    gap: 45px;
  }


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


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


  .service-card:nth-child(3n) {
    border-right:
      1px solid var(--dark-border);
  }


  .service-card:nth-child(2n) {
    border-right: 0;
  }


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


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


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


  .ecosystem-grid > *:nth-child(4n) {
    border-right:
      1px solid var(--dark-border);
  }


  .ecosystem-grid > *:nth-child(2n) {
    border-right: 0;
  }


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


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


  .founder-card {
    grid-template-columns:
      150px 1fr;

    gap: 35px;
  }


  .founder-avatar {
    width: 140px;
    height: 140px;
  }


  .founder-details {
    grid-template-columns:
      1fr;
  }


  .footer-grid {
    grid-template-columns:
      2fr 1fr 1fr;
  }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 860px) {

  .container {
    width:
      min(
        calc(100% - 28px),
        var(--max-width)
      );
  }


  .nav-wrapper {
    min-height: 66px;
  }


  .menu-button {
    display: block;
  }


  .navigation {
    position: fixed;

    top: 66px;

    left: 14px;
    right: 14px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 12px;

    background: var(--white);

    border:
      1px solid var(--border);

    border-radius: 15px;

    box-shadow:
      0 20px 50px
      rgba(0, 0, 0, 0.12);

    max-height: calc(100vh - 85px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }


  .navigation.open {
    display: flex;
  }


  .navigation a {
    padding: 10px 14px;

    font-size: 14px;

    min-height: 44px;

    display: flex;

    align-items: center;

    border-radius: 8px;

    touch-action: manipulation;
  }


  .navigation a:active,
  .navigation a.active {
    background: #f4f4f5;

    color: var(--black);

    font-weight: 750;
  }


  .navigation a::after {
    display: none;
  }


  .hero {
    min-height: 590px;
  }


  .hero-container {
    padding: 80px 0;
  }


  .hero h1 {
    font-size: 51px;

    letter-spacing: -3px;
  }


  .hero-description {
    font-size: 16px;
  }


  .section {
    padding: 75px 0;
  }


  .section-title {
    margin-bottom: 40px;
  }


  .section-title h2 {
    font-size: 36px;
  }


  .two-column,
  .card-grid.two,
  .product-grid {
    grid-template-columns:
      1fr;
  }


  .two-column {
    gap: 30px;
  }


  .story-card {
    grid-template-columns:
      1fr;

    gap: 20px;

    padding: 30px;
  }


  .story-year {
    font-size: 45px;
  }


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


  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n) {
    border-right: 0;
  }


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


  .values-grid,
  .audience-grid,
  .process {
    grid-template-columns:
      1fr;
  }


  .info-card,
  .product-card {
    padding: 30px;
  }


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


  .ecosystem-grid > * {
    border-right: 0 !important;
  }


  .technology-box {
    grid-template-columns:
      1fr;
  }


  .security-content {
    grid-template-columns:
      1fr;

    padding: 30px;
  }


  .founder-card {
    grid-template-columns:
      1fr;

    padding: 30px;
  }


  .founder-avatar {
    width: 120px;
    height: 120px;
  }


  .founder-information h3 {
    font-size: 38px;
  }


  .company-information > div {
    grid-template-columns:
      1fr;

    gap: 5px;
  }


  .timeline-item {
    grid-template-columns:
      1fr;

    gap: 5px;
  }


  .global-box {
    padding: 40px 25px;
  }


  .global-box h2 {
    font-size: 43px;

    letter-spacing: -2px;
  }


  .cta {
    padding: 85px 0;
  }


  .cta h2 {
    font-size: 45px;
  }


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


  .footer-about {
    grid-column:
      1 / -1;
  }


  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

  .hero h1 {
    font-size: 44px;
  }


  .section-title h2 {
    font-size: 32px;
  }


  .button {
    width: 100%;
  }


  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }


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

}


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

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


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

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}