@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");
@font-face {
  font-family: Gilroy-Regular;
  src: url("../assets/fonts/Gilroy-Regular.ttf");
}
@font-face {
  font-family: Gilroy-Light;
  src: url("../assets/fonts/Gilroy-Light.ttf");
}
@font-face {
  font-family: Gilroy-Medium;
  src: url("../assets/fonts/Gilroy-Medium.ttf");
}
@font-face {
  font-family: Gilroy-Bold;
  src: url("../assets/fonts/Gilroy-Bold.ttf");
}
@font-face {
  font-family: Gilroy-Heavy;
  src: url("../assets/fonts/Gilroy-Heavy.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar);
  border-radius: 0.625rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-scrollbar);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-scrollbar) transparent;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

#workflow,
#faq {
  scroll-margin-top: 80px;
}

:root {
  --color-bg: #030303;
  --color-bg-secondary: #0f0f0f;
  --color-text: #fafafa;
  --color-text-secondary: #bbbbbb;
  --color-accent: #fa3a3b;
  --color-accent-secondary: #fa3a3b30;
  --color-border: #1f1f1f;
  --color-card: #1f1f1f50;
  --color-scrollbar: #ffffff26;
  --color-scrollbar-active: #ffffff59;
  --color-link-hover: #fafafa;
  --color-hover-bg: #1a1a1a;
  --color-scrollbar: #ffffff26;
  --color-scrollbar-active: #ffffff59;
}

header {
  width: 100%;
  margin: 0 auto;
  height: -moz-min-content;
  height: min-content;
  padding: 1rem 1.25rem;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
header .header-inner {
  width: 100%;
  max-width: 77rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner .left .logo a {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  font-family: "Gilroy", "Outfit", "Gilroy", "Inter", Arial, Helvetica, sans-serif;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
header .header-inner .left .logo a .brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}
header .header-inner .left .logo a .byline {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
  color: var(--color-text);
}
header .header-inner .middle {
  display: none;
}
header .header-inner .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner .right button {
  display: none;
}
header .header-inner .right .more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner .right .more .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner .right .more .menu svg {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease;
  stroke: var(--color-text);
  -webkit-tap-highlight-color: transparent;
}
header .header-inner .right .more .nav-card {
  position: absolute;
  top: 130%;
  right: 0;
  background: var(--color-bg-secondary);
  border: 0.5px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 0.5rem 0.5rem;
  min-width: 10rem;
  width: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.1s ease, transform 0.3s ease;
  z-index: 999;
  align-items: flex-start;
  white-space: nowrap;
}
header .header-inner .right .more .nav-card a {
  width: 100%;
  display: block;
  padding: 0.5rem 0.5rem;
  color: var(--color-text);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
header .header-inner .right .more .nav-card a:hover {
  color: var(--color-link-hover);
  background-color: var(--color-hover-bg);
}
header .header-inner .right .more .nav-card.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  header .header-inner {
    margin: 0 auto;
    align-items: space-between;
  }
  header .header-inner .middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  header .header-inner .middle nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  header .header-inner .middle nav a {
    color: var(--color-text);
    font-size: 1.125rem;
    padding: 0.5rem 0.75rem;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 0.5rem;
    text-decoration: none;
  }
  header .header-inner .middle nav a:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-link-hover);
  }
  header .header-inner .right button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    width: 100%;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease-in;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-family: "Gilroy-Regular", "Outfit", Arial, Helvetica, sans-serif;
    background-color: #fa3a3b;
    color: white;
    box-shadow: rgba(255, 60, 60, 0.3) 0px 0px 72px 0px, rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset, rgba(255, 60, 60, 0.12) 0px 0px 0px 6px;
  }
  header .header-inner .right button:active {
    transform: scale(0.95);
  }
  header .header-inner .right .more {
    display: none;
  }
}
.hero {
  width: 100%;
  min-height: 100vh;
  padding: 0 2.5rem;
  background-color: var(--color-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .label {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #fff;
}
.hero .label .status-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero .label .status-dot .ping {
  position: absolute;
  inset: 0;
  background-color: #00ff84;
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero .label .status-dot .dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #00ff84;
  border-radius: 50%;
}
.hero .label .label-text {
  margin-left: 0.5rem;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.hero h1 {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 500;
  max-width: 64rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
}
.hero h1 span.icons {
  display: inline-flex;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.hero h1 span.icons > * {
  margin-left: -0.25rem;
}
.hero h1 span.icons span {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  border: 3px solid #fafafa;
}
.hero h1 span.icons span svg {
  width: 2rem;
  height: 2rem;
}
.hero h1 span.icons span:nth-child(1) {
  background-color: #fbba54;
  transform: rotate(5deg);
}
.hero h1 span.icons span:nth-child(2) {
  background: linear-gradient(#ff7275, #f63f41);
  transform: rotate(355deg);
}
.hero h1 span.icons span:nth-child(3) {
  background: linear-gradient(#48daff, #0090ff);
  transform: rotate(5deg);
}
.hero p {
  text-align: center;
  max-width: 48rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 150%;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
}
.hero button {
  margin: 1.25rem 0 5rem 0;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  width: 100%;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Gilroy-Regular", "Outfit", Arial, Helvetica, sans-serif;
  background-color: #fa3a3b;
  color: white;
  box-shadow: rgba(255, 60, 60, 0.3) 0px 0px 72px 0px, rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset, rgba(255, 60, 60, 0.12) 0px 0px 0px 6px;
}
.hero button:hover {
  background-color: #ff3d3d;
}
.hero button:active {
  transform: scale(0.95);
}
.hero .social .proof {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .social .proof img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid var(--color-bg);
  transition: transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  cursor: pointer;
  user-drag: none;
  -webkit-user-drag: none;
}
.hero .social .proof img:hover {
  transform: translateY(-10px);
}
.hero .social .proof img:nth-child(2) {
  margin-left: -0.75rem;
}
.hero .social .proof img:nth-child(3) {
  margin-left: -0.75rem;
}
.hero .social .proof img:nth-child(4) {
  margin-left: -0.75rem;
}
.hero .social .proof img:nth-child(5) {
  margin-left: -0.75rem;
}
.hero .social .stars {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .social .stars svg {
  height: 1rem;
  width: 1rem;
}
.hero .social p {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-family: "Gilroy-Medium", "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: bold;
  background: linear-gradient(180deg, #fff6d8, #f0c97a);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 18px rgba(250, 223, 168, 0.25);
}

@media screen and (min-width: 768px) {
  .hero {
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero h1 span.icons span {
    height: 4rem;
    width: 4rem;
  }
  .hero h1 span.icons span svg {
    height: 2.5rem;
    width: 2.5rem;
  }
  .hero p {
    font-size: 1.25rem;
  }
  .hero button {
    max-width: 250px;
  }
  .hero:hover .spotlight-bg {
    opacity: 1;
  }
  .spotlight-bg {
    --size: 200px;
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/spotlight.webp");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0.001;
    transition: opacity 0.25s ease;
    -webkit-mask-image: radial-gradient(circle var(--size) at var(--x, 50%) var(--y, 50%), rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 75%);
    mask-image: radial-gradient(circle var(--size) at var(--x, 50%) var(--y, 50%), rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 75%);
  }
  /* keep text above spotlight */
  .hero > *:not(.spotlight-bg) {
    position: relative;
    z-index: 2;
  }
}
.workflow {
  width: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
  margin-bottom: 2rem;
}
.workflow h2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  font-family: "Gilroy-Medium", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.workflow h2 span {
  font-size: 3rem;
}
.workflow .bentogrid {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow .bentogrid .bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "box1" "box2" "box3" "box4";
  gap: 0.5rem;
}
.workflow .bentogrid .bento .box1 {
  background-color: var(--color-card);
  min-height: 22rem;
  height: auto;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.workflow .bentogrid .bento .box1 .top {
  background: url("../assets//images/1c.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.workflow .bentogrid .bento .box1 .top span {
  font-size: 2rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box1 .bottom h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.workflow .bentogrid .bento .box1 .bottom p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box2 {
  grid-area: box2;
  background-color: var(--color-card);
  min-height: 22rem;
  height: auto;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.workflow .bentogrid .bento .box2 .top {
  background: url("../assets//images/2c.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.workflow .bentogrid .bento .box2 .top span {
  font-size: 2rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box2 .bottom h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.workflow .bentogrid .bento .box2 .bottom p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box3 {
  grid-area: box3;
  background-color: var(--color-card);
  min-height: 22rem;
  height: auto;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.workflow .bentogrid .bento .box3 .top {
  background: url("../assets//images/3c.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}
.workflow .bentogrid .bento .box3 .top span {
  font-size: 2rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box3 .bottom h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.workflow .bentogrid .bento .box3 .bottom p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box4 {
  grid-area: box4;
  background-color: var(--color-card);
  min-height: 22rem;
  height: auto;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.workflow .bentogrid .bento .box4 .top {
  background: url("../assets//images/4c.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
}
.workflow .bentogrid .bento .box4 .top span {
  font-size: 2rem;
  color: var(--color-text-secondary);
}
.workflow .bentogrid .bento .box4 .bottom h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.workflow .bentogrid .bento .box4 .bottom p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

@media screen and (min-width: 450px) {
  .workflow {
    margin-bottom: 0;
  }
  .workflow .bentogrid .bento .box1 .top,
  .workflow .bentogrid .bento .box2 .top,
  .workflow .bentogrid .bento .box3 .top,
  .workflow .bentogrid .bento .box4 .top {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .workflow {
    min-height: 100vh;
  }
  .workflow h2 {
    padding: 1rem 2.5rem;
  }
  .workflow h2 span {
    font-size: 3.75rem;
  }
  .workflow .bentogrid .bento {
    min-height: 100vh;
    padding: 1rem 0rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "box1 box2" "box3 box4";
  }
  .workflow .bentogrid .bento .box1 {
    aspect-ratio: auto;
    gap: 1rem;
  }
  .workflow .bentogrid .bento .box1 .top {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .workflow .bentogrid .bento .box1 .top span {
    font-size: 2rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box1 .bottom h3 {
    font-size: 2.25rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
  }
  .workflow .bentogrid .bento .box1 .bottom p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box2 {
    aspect-ratio: auto;
    gap: 1rem;
  }
  .workflow .bentogrid .bento .box2 .top {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .workflow .bentogrid .bento .box2 .top span {
    font-size: 2rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box2 .bottom h3 {
    font-size: 2.25rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
  }
  .workflow .bentogrid .bento .box2 .bottom p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box3 {
    aspect-ratio: auto;
    gap: 1rem;
  }
  .workflow .bentogrid .bento .box3 .top {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .workflow .bentogrid .bento .box3 .top span {
    font-size: 2rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box3 .bottom h3 {
    font-size: 2.25rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
  }
  .workflow .bentogrid .bento .box3 .bottom p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box4 {
    aspect-ratio: auto;
    gap: 1rem;
  }
  .workflow .bentogrid .bento .box4 .top {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .workflow .bentogrid .bento .box4 .top span {
    font-size: 2rem;
    color: var(--color-text-secondary);
  }
  .workflow .bentogrid .bento .box4 .bottom h3 {
    font-size: 2.25rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
  }
  .workflow .bentogrid .bento .box4 .bottom p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
}
.faq {
  width: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
  margin-bottom: 2rem;
}
.faq h2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  font-family: "Gilroy-Medium", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.faq h2 span {
  font-size: 3rem;
}
.faq .bentogrid {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .bentogrid .bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(1, auto);
  grid-template-areas: "box1" "box2";
  gap: 0rem;
}
.faq .bentogrid .bento .box1 {
  height: auto;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.faq .bentogrid .bento .box1 h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
}
.faq .bentogrid .bento .box1 p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  text-align: center;
}
.faq .bentogrid .bento .box2 {
  grid-area: box2;
  height: auto;
  border-radius: 0.5rem;
  padding: 0.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  /* SUMMARY */
  /* ARROW */
}
.faq .bentogrid .bento .box2 .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq .bentogrid .bento .box2 .faq-item {
  background: var(--color-card);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq .bentogrid .bento .box2 .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .bentogrid .bento .box2 .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq .bentogrid .bento .box2 .arrow {
  color: #fafafa;
  transition: transform 0.3s ease;
}
.faq .bentogrid .bento .box2 .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding: 0 1.5rem;
}
.faq .bentogrid .bento .box2 .faq-content p {
  padding-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-size: 1.125rem;
}
.faq .bentogrid .bento .box2 details[open] .faq-content {
  max-height: 300px;
  opacity: 1;
}
.faq .bentogrid .bento .box2 details[open] .arrow {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .faq {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .faq h2 {
    padding: 1rem 2.5rem;
  }
  .faq h2 span {
    font-size: 3.75rem;
  }
  .faq .bentogrid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq .bentogrid .bento {
    padding: 1rem 0rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "box1 box2";
  }
  .faq .bentogrid .bento .box1 {
    aspect-ratio: auto;
    gap: 0;
    align-items: flex-start;
  }
  .faq .bentogrid .bento .box1 h3 {
    font-size: 2.5rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
  }
  .faq .bentogrid .bento .box1 p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    text-align: left;
  }
  .faq .bentogrid .bento .box2 {
    aspect-ratio: auto;
    gap: 0;
  }
  .faq .bentogrid .bento .box2 .faq-content {
    font-size: 1.25rem;
  }
}
.footer {
  width: 100%;
  background-color: #000;
  color: var(--color-text);
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.footer .bentogrid {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .bentogrid .bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "box1" "box2" "box3" "box4";
  gap: 0.5rem;
}
.footer .bentogrid .bento .box1 {
  grid-area: box1;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.footer .bentogrid .bento .box1 a.rizz {
  font-weight: 400;
  color: var(--color-text);
  font-family: "Gilroy", "Outfit", "Gilroy", "Inter", Arial, Helvetica, sans-serif;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.footer .bentogrid .bento .box1 a.rizz .brand {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
}
.footer .bentogrid .bento .box1 a.rizz .byline {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
  color: var(--color-text);
}
.footer .bentogrid .bento .box1 p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-top: 0.75rem;
}
.footer .bentogrid .bento .box1 p a {
  text-decoration: none;
  color: var(--color-text-secondary);
}
.footer .bentogrid .bento .box2 {
  grid-area: box2;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.footer .bentogrid .bento .box2 h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
}
.footer .bentogrid .bento .box2 ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer .bentogrid .bento .box2 ul a {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.footer .bentogrid .bento .box2 ul a:hover {
  color: var(--color-accent);
}
.footer .bentogrid .bento .box3 {
  grid-area: box3;
  height: auto;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.footer .bentogrid .bento .box3 h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
}
.footer .bentogrid .bento .box3 ul {
  list-style-type: none;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
}
.footer .bentogrid .bento .box3 ul a {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.footer .bentogrid .bento .box3 ul a:hover {
  color: var(--color-accent);
}
.footer .bentogrid .bento .box4 {
  grid-area: box4;
  height: auto;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.footer .bentogrid .bento .box4 h3 {
  font-size: 2rem;
  font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-text);
}
.footer .bentogrid .bento .box4 ul {
  list-style-type: none;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
}
.footer .bentogrid .bento .box4 ul a {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.footer .bentogrid .bento .box4 ul a:hover {
  color: var(--color-accent);
}
.footer p.bigtext {
  width: 100%;
  text-align: center;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  max-height: 55px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #aaaaaa 40%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(90px, 18vw, 360px);
  max-height: clamp(55px, 12vw, 250px);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .footer .bentogrid .bento {
    padding: 1rem 0rem;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "box1 box2 box3 box4";
  }
  .footer .bentogrid .bento .box1 {
    aspect-ratio: auto;
    gap: 0;
  }
  .footer .bentogrid .bento .box1 p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
  }
  .footer .bentogrid .bento .box2 {
    aspect-ratio: auto;
    gap: 0;
  }
  .footer .bentogrid .bento .box2 h3 {
    font-size: 2rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
  }
  .footer .bentogrid .bento .box2 ul a {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
  .footer .bentogrid .bento .box3 {
    aspect-ratio: auto;
    gap: 0;
  }
  .footer .bentogrid .bento .box3 h3 {
    font-size: 2rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
  }
  .footer .bentogrid .bento .box3 ul a {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
  .footer .bentogrid .bento .box4 {
    aspect-ratio: auto;
    gap: 0;
  }
  .footer .bentogrid .bento .box4 h3 {
    font-size: 2rem;
    font-family: "Gilroy-Regular", "Outfit", "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
  }
  .footer .bentogrid .bento .box4 ul a {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
  }
}/*# sourceMappingURL=style.css.map */