/* ============================================
   APPOSTU LANDING — Design system tokens
   ============================================ */
:root {
  --app-accent: #FF341D;
  --app-accent-hover: #FF5C38;
  --app-accent-press: #E03C15;
  --app-accent-soft: rgba(255, 71, 29, 0.12);

  --app-ink-0: #050505;
  --app-ink-1: #111111;
  --app-ink-2: #1D1D1D;
  --app-ink-3: #2B2B2B;

  --app-paper-0: #FFFFFF;
  --app-paper-1: #F8F8F8;
  --app-paper-2: #EFE4E2;

  --app-text-on-dark: #FFFFFF;
  --app-text-on-dark-muted: rgba(255, 255, 255, 0.6);
  --app-text-on-dark-faint: rgba(255, 255, 255, 0.3);
  --app-text-on-light: #050505;
  --app-text-on-light-muted: rgba(5, 5, 5, 0.6);
  --app-text-on-light-faint: rgba(5, 5, 5, 0.3);

  --app-r-sm: 8px;
  --app-r-md: 12px;
  --app-r-lg: 16px;
  --app-r-xl: 20px;
  --app-r-2xl: 32px;
  --app-r-pill: 9999px;

  --app-shadow-accent: 0 12px 32px -8px rgba(255, 71, 29, 0.45);

  --app-font-display: 'Inter', system-ui, sans-serif;
  --app-font-text: 'Manrope', system-ui, sans-serif;

  --container: 1440px;
  --min-container: 800px;
  --gutter: 24px;
  --section-padding: clamp(56px, 8vw, 84px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--app-font-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--app-text-on-light);
  background: var(--app-paper-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
  cursor: pointer;
  font-family: var(--app-font-text);
}

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

/* Headings default to Inter display, bodies to Manrope */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--app-font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -2.2px;
}

h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

h4 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.spanRed {
  color: var(--app-accent);
}

h1 em,
h2 em {
  color: var(--app-accent);
  font-style: italic;
  font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: var(--min-container);
  display: flex;
  flex-direction: column;
  background: var(--app-ink-0);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.15) 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0) 35%, rgba(5, 5, 5, 0.85) 100%);
  z-index: 0;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 44px;
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.logo img {
  width: 36px;
  height: 32px;
  display: block;
}

.logo span {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hamburger {
  display: none;
}

.links {
  display: flex;
  gap: 36px;
}

@media (min-width: 901px) {
  .nav-menu .links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.links span {
  font-family: var(--app-font-text);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 120ms;
}

.links span:hover {
  color: #fff;
}

.buttons {
  display: flex;
  gap: 10px;
}

.startButton,
.loginButton,
.CTA button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.35px;
  border-radius: var(--app-r-pill);
  height: 40px;
  padding: 0 20px;
  line-height: 1;
  transition: transform 120ms ease, background-color 120ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.startButton {
  background: var(--app-accent);
  color: var(--app-ink-0);
  border: none;
  box-shadow: var(--app-shadow-accent);
}

.startButton:hover {
  background: var(--app-accent-hover);
}

.loginButton {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.loginButton:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contentHero {
  position: relative;
  z-index: 1;
  padding: 130px 44px 120px;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: none;
}

.textsHero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.textsHero h4 {
  font-family: var(--app-font-text);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.4px;
  margin: 0;
}

.textsHero h1 {
  font-family: var(--app-font-display);
  font-weight: 700;
  color: #fff;
  margin: 0;
  max-width: 14ch;
}

.CTA {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.CTA button {
  background: var(--app-accent);
  color: var(--app-ink-0);
  border: none;
  height: 56px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: var(--app-shadow-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.CTA button:hover {
  background: var(--app-accent-hover);
}

.CTA>span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .header__inner {
    padding: 16px 20px;
  }

  .logo img {
    width: 26px;
    height: 23px;
  }

  .contentHero {
    padding: 110px 20px 80px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 102;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--app-ink-0);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 101;
  }

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

  .nav-menu .links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav-menu .links span {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
    max-width: 240px;
  }
}

/* ============================================
   FIRST SECTION (intro + bannerLoop)
   ============================================ */
.firstSection {
  display: flex;
  flex-direction: column;
  padding-top: var(--section-padding);
  background: var(--app-paper-0);
}

.contentFirstSection {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  padding-bottom: var(--section-padding);
}

.contentFirstSection img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--app-r-2xl);
  background: var(--app-ink-1);
  min-height: unset;
  min-width: unset;
}

.textsFirstSection {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0;
}

.textsFirstSection h2 {
  font-family: var(--app-font-display);
  font-weight: 700;
  color: var(--app-ink-0);
  max-width: 24ch;
}

.divFirstSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.divFirstSection>span,
.divFirstSection div span:first-child {
  font-size: 16px;
  color: var(--app-text-on-light-muted);
  line-height: 1.6;
}

.divFirstSection div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-abbinai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--app-ink-0);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  width: fit-content;
}

.link-abbinai b {
  color: var(--app-accent);
  font-weight: 700;
}

.link-abbinai svg {
  transition: transform 200ms ease;
}

.link-abbinai:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 880px) {
  .contentFirstSection {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ---- Banner loop (hashtags) ---- */
.bannerLoop {
  background: color-mix(in srgb, var(--app-accent) 12%, var(--app-paper-0));
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.bannerLoop__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-left 32s linear infinite;
  white-space: nowrap;
}

.bannerLoop span {
  font-family: var(--app-font-display);
  font-weight: 300;
  font-size: 16px;
  color: var(--app-ink-0);
  letter-spacing: 0.4px;
}

.bannerLoop .spanRed {
  color: var(--app-accent);
}

/* ============================================
   SECOND SECTION (Vantaggi)
   ============================================ */
.secondSection,
.functionSection,
.howItWorks,
.gallerySection {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
}

.secondSection {
  display: flex;
  flex-direction: column;
  padding-block: var(--section-padding);
}

.secondSection>span:first-of-type,
.functionSection>span:first-of-type,
.textsHowItWorks>span:first-of-type,
.textsFaq-wrap>span:first-of-type {
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--app-text-on-light);
  margin-bottom: 12px;
  display: inline-block;
}

.functionSection>span:first-of-type {
  color: var(--app-accent);
}

.textsSecondSection,
.textsFunctionSection,
.textsFaq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 40px;
}

.textsSecondSection>h2 {
  max-width: 14ch;
}

.textsSecondSection>div,
.textsFunctionSection>div,
.textsFaq>div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.textsSecondSection div span:first-child,
.textsFunctionSection div span:first-child,
.textsFaq>div span:first-child {
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--app-accent);
}

.textsSecondSection div span:last-child,
.textsFaq>div span:last-child {
  font-size: 16px;
  line-height: 1.6;
  color: var(--app-text-on-light-muted);
}

.textsFunctionSection div span:last-child {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 800px) {

  .textsSecondSection,
  .textsFunctionSection,
  .textsFaq {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cardsSecondSection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  height: 420px;
}

.cardsSecondSection .first,
.cardsSecondSection .second,
.cardsSecondSection .third {
  border-radius: var(--app-r-2xl);
  padding: 24px;
  min-width: unset;
  height: 420px;
  overflow: hidden;
}

.cardsSecondSection .first {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  background: var(--app-ink-0);
  flex-grow: 0;
}

.cardsSecondSection .first img {
  border-radius: var(--app-r-lg);
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
  max-height: 220px;
  background: var(--app-ink-2);
}

.cardsSecondSection .first h2,
.cardsSecondSection .second h2,
.cardsSecondSection .third h2 {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -3px;
  margin: 0;
}

.cardsSecondSection .first h4,
.cardsSecondSection .second h4,
.cardsSecondSection .third h4 {
  font-family: var(--app-font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0;
}

.cardsSecondSection .second {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  background: transparent;
}

.cardsSecondSection .second .up {
  background: var(--app-accent);
  color: #fff;
  border-radius: var(--app-r-2xl);
  padding: 24px;
  flex-grow: 0;
  display: flex;
  align-items: flex-end;
}

.cardsSecondSection .second .down {
  background: var(--app-accent);
  color: #fff;
  border-radius: var(--app-r-2xl);
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.cardsSecondSection .second .down span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.cardsSecondSection .third {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  background: transparent;
}

.cardsSecondSection .third .up {
  background: var(--app-ink-0);
  color: #fff;
  border-radius: var(--app-r-2xl);
  padding: 24px;
  flex-grow: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.cardsSecondSection .third .up h2.spanRed {
  color: var(--app-accent);
}

.cardsSecondSection .third .down {
  background-image: url('assets/food-3.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--app-r-2xl);
  flex-grow: 1;
  min-height: 190px;
}

@media (max-width: 900px) {
  .cardsSecondSection {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
  }

  .cardsSecondSection .first,
  .cardsSecondSection .second,
  .cardsSecondSection .third {
    min-height: 380px;
    height: auto;
  }

  .cardsSecondSection .third .up {
    min-height: 200px;
  }
}

/* ============================================
   FUNCTION SECTION (Funzioni — horizontal scroll)
   ============================================ */
.functionSection {
  background: var(--app-ink-0);
  color: #fff;
  max-width: none;
  margin: 0;
  padding: var(--section-padding) 0;
}

.functionSection>span:first-of-type {
  color: #fff;
  margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.functionSection .textsFunctionSection {
  padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2));
  max-width: none;
}

.textsFunctionSection>h2 {
  color: #fff;
  max-width: 14ch;
}

.cardsFunctionSection {
  position: relative;
  overflow: hidden;
  padding: 4px max(var(--gutter), calc((100vw - var(--container)) / 2));
  cursor: grab;
  user-select: none;
  min-height: 260px;
}

.cardsFunctionSection.dragging {
  cursor: grabbing;
}

.cardsFunctionSection__track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.cardsFunctionSection__track>div {
  flex: 0 0 260px;
  min-height: 240px;
  border-radius: var(--app-r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 200ms ease;
}

.cardsFunctionSection__track>div:hover {
  transform: translateY(-4px);
}

.cardsFunctionSection .topCard {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cardsFunctionSection .topCard h4 {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
}

.cardsFunctionSection .topCard>div {
  width: 44px;
  height: 44px;
  border-radius: var(--app-r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cardsFunctionSection .contentCard span {
  font-size: 14px;
  line-height: 1.5;
}

/* card color variants — cycle of 3 (dark / accent / white) */
.card-dark {
  background: #141414;
  color: #fff;
}

.card-dark .topCard>div {
  background: var(--app-accent);
  color: var(--app-ink-0);
}

.card-dark .contentCard span {
  color: rgba(255, 255, 255, 0.7);
}

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

.card-accent .topCard>div {
  background: var(--app-ink-0);
  color: #fff;
}

.card-accent .contentCard span {
  color: rgba(255, 255, 255, 0.9);
}

.card-light {
  background: var(--app-paper-0);
  color: var(--app-ink-0);
}

.card-light .topCard>div {
  background: var(--app-ink-0);
  color: #fff;
}

.card-light .contentCard span {
  color: var(--app-text-on-light-muted);
}

/* ============================================
   GALLERY (SliderPhotos)
   ============================================ */
.gallerySection {
  max-width: none;
  margin: 0;
  padding-block: var(--section-padding);
  overflow: hidden;
  background: var(--app-paper-0);
}

.firstRowGallery,
.secondRowGallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
}

.firstRowGallery {
  animation: marquee-left 55s linear infinite;
}

.secondRowGallery {
  animation: marquee-right 60s linear infinite;
}

.firstRowGallery img,
.secondRowGallery img {
  width: 420px;
  height: 280px;
  border-radius: var(--app-r-xl);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--app-ink-2);
}

.textOnGallery {
  min-width: 420px;
  height: 280px;
  border-radius: var(--app-r-xl);
  background: var(--app-ink-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  flex-shrink: 0;
}

.textOnGallery h2 {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  margin: 0;
  text-align: center;
  letter-spacing: -0.8px;
  display: flex;
  flex-direction: column;
  gap: 6px;

  color: var(--app-text-on-dark);
  background: linear-gradient(110deg,
      var(--app-text-on-dark) 0%,
      var(--app-text-on-dark) 40%,
      var(--app-accent) 50%,
      var(--app-text-on-dark) 60%,
      var(--app-text-on-dark) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer-text 3.5s linear infinite;
}

@keyframes shimmer-text {
  to {
    background-position: -200% center;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.howItWorks {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-bottom: var(--section-padding);
}

.textsHowItWorks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 32px;
}

.textsHowItWorks h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.stepsSection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  display: flex;
}

.imageIconStep {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-radius: var(--app-r-2xl);
  background: var(--app-ink-0);
  color: #fff;
  width: 100%;
  min-height: 420px;
}

.imageIconStep.step--accent {
  background: var(--app-accent);
  color: var(--app-ink-0);
}

.imageIconStep img {
  width: 100%;
  min-height: 100px;
  max-height: 200px;
  border-radius: var(--app-r-xl);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.15);
}

.imageIconStep>div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.imageIconStep>div>div {
  width: 44px;
  height: 44px;
  background: var(--app-accent);
  border-radius: var(--app-r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--app-ink-0);
  flex-shrink: 0;
}

.imageIconStep.step--accent>div>div {
  background: var(--app-ink-0);
  color: #fff;
}

.imageIconStep h2 {
  font-family: var(--app-font-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -1.5px;
  margin: 0;
  color: inherit;
}

.imageIconStep h4 {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}

.imageIconStep>span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.imageIconStep.step--accent>span {
  color: rgba(5, 5, 5, 0.75);
}

@media (max-width: 900px) {
  .stepsSection {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABBINAI
   ============================================ */
.abbinai {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--app-ink-1);
  color: #fff;
  overflow: hidden;
  padding-block: var(--section-padding);
  min-height: var(--min-container);
}

.abbinai::before,
.abbinai::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.abbinai::before {
  background: radial-gradient(circle, rgba(255, 71, 29, 0.85) 0%, rgba(255, 71, 29, 0) 65%);
  top: -120px;
  left: -180px;
}

.abbinai::after {
  background: radial-gradient(circle, rgba(255, 71, 29, 0.85) 0%, rgba(255, 71, 29, 0) 65%);
  bottom: -160px;
  right: -180px;
}

.abbinai__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.abbinai__title {
  font-family: var(--app-font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  max-width: 28ch;
  margin: 0 0 28px;
}

.abbinai__chip {
  display: inline-flex;
  align-items: center;
  background: var(--app-accent);
  color: var(--app-paper-1);
  padding: 6px 20px;
  border-radius: var(--app-r-pill);
  font-family: var(--app-font-display);
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-right: 12px;
  vertical-align: baseline;
  line-height: 1.2;
  text-transform: uppercase;
}

.abbinai__sub {
  max-width: 65ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.question {
  position: absolute;
  background: rgba(43, 43, 43, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--app-r-pill);
  padding: 12px 22px;
  font-family: var(--app-font-display);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  z-index: 1;
  animation: float 9s ease-in-out infinite;
}

.question--accent {
  background: rgba(255, 71, 29, 0.3);
  border-color: rgba(255, 71, 29, 0.45);
  color: #fff;
}

/* only 3 chips, in corners far from the centered copy */
.question--a {
  top: 15%;
  left: 20%;
  animation-delay: -1s;
}

.question--b {
  top: 20%;
  right: 15%;
  animation-delay: -4s;
  animation-duration: 11s;
}

.question--c {
  bottom: 20%;
  left: 65%;
  transform: translateX(-50%);
  animation-delay: -6s;
  animation-duration: 10s;
  animation-name: float-center-x;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-10px) translateX(6px);
  }

  50% {
    transform: translateY(6px) translateX(-6px);
  }

  75% {
    transform: translateY(-4px) translateX(-8px);
  }
}

@keyframes float-center-x {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(calc(-50% + 8px)) translateY(-6px);
  }
}

@media (max-width: 800px) {
  .abbinai {
    min-height: 480px;
    padding-block: 60px;
  }

  .question {
    display: none;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--app-paper-1);
  color: #fff;
  padding-top: var(--section-padding);
}

.pricing__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
}

.pricing__head {
  text-align: center;
  margin-bottom: 56px;
}

.pricing__head>span {
  display: inline-block;
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--app-ink-1);
  margin-bottom: 12px;
}

.pricing__head h2 {
  color: var(--app-ink-1);
  max-width: 18ch;
  margin-inline: auto;
}

.pricing__head h2 em {
  color: var(--app-accent);
  font-style: italic;
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--app-ink-1);
  border-radius: var(--app-r-2xl);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card--featured {
  background: radial-gradient(circle at 100% 100%, rgba(255, 71, 29, 0.85) 0%, var(--app-ink-1) 45%);
  border-color: var(--app-accent);
}

.plan-card--starter {
  background: var(--app-paper-0);
  color: var(--app-ink-1);
  border: 1px solid var(--app-paper-2);
}

.plan-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--app-accent);
  color: var(--app-ink-0);
  padding: 4px 14px;
  border-radius: var(--app-r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.plan-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--app-r-md);
  background: rgba(255, 71, 29, 0.18);
  color: var(--app-accent);
}

.plan-card__name {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: 20px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-card__price b {
  font-family: var(--app-font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1;
}

.plan-card__price span {
  font-size: 14px;
  opacity: 0.6;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__starter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.plan-card__starter li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--app-ink-1);
}

.plan-card__starter svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--app-accent);
}

.plan-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--app-accent);
}

.plan-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--app-r-pill);
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.35px;
  border: 1px solid transparent;
  transition: background-color 120ms ease;
  width: 100%;
  white-space: nowrap;
}

.plan-card__cta--ghost {
  background: var(--app-ink-2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.plan-card__cta--starter {
  background: var(--app-ink-2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.plan-card__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.plan-card__cta--primary {
  background: var(--app-accent);
  color: var(--app-ink-0);
  box-shadow: var(--app-shadow-accent);
}

.plan-card__cta--primary:hover {
  background: var(--app-accent-hover);
}

.pricing__note {
  margin-top: 32px;
  margin-bottom: 0;
  text-align: center;
  color: var(--app-text-on-light-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}

@media (max-width: 880px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--app-paper-1);
  padding-block: var(--section-padding);
}

.faq__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
}

.textsFaq-wrap {
  display: flex;
  flex-direction: column;
}

.textsFaq {
  margin-top: 12px;
  margin-bottom: 40px;
}

.textsFaq h2 {
  max-width: 14ch;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--app-paper-0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--app-r-md);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--app-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--app-ink-1);
  background-color: var(--app-paper-0);
}

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

.faq__item summary::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>") center/contain no-repeat;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__item p {
  margin: 0;
  padding: 0 28px 22px;
  color: var(--app-text-on-light-muted);
  background-color: var(--app-paper-0);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--app-paper-1);
  color: var(--app-ink-1);
  padding-bottom: var(--section-padding);
}

.contact__grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 64px;
  align-items: start;
}

.contact__copy>span {
  display: inline-block;
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--app-ink-1);
  margin-bottom: 12px;
}

.contact__copy h2 {
  color: var(--app-ink-1);
  max-width: 14ch;
  margin-bottom: 20px;
}

.contact__copy h2 em {
  color: var(--app-accent);
  font-style: italic;
  font-weight: 700;
}

.contact__copy p {
  color: var(--app-text-on-light-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}

.contact-form {
  background: var(--app-ink-1);
  padding: 48px;
  border-radius: var(--app-r-2xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

.contact-form .field--full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 15px;
  font-family: var(--app-font-text);
  padding: 6px 0 14px;
  outline: none;
  resize: vertical;
  transition: border-color 160ms;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--app-accent);
}

.contact-form textarea {
  min-height: 60px;
}

.contact-form__submit {
  grid-column: 1 / -1;
  margin-top: 12px;
  background: var(--app-accent);
  color: var(--app-ink-0);
  border: none;
  height: 56px;
  border-radius: var(--app-r-md);
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--app-shadow-accent);
  transition: background-color 120ms;
}

.contact-form__submit:hover {
  background: var(--app-accent-hover);
}

@media (max-width: 880px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--app-ink-0);
  color: rgba(255, 255, 255, 0.5);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer .logo {
  color: #fff;
}

.site-footer__brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36ch;
  line-height: 1.6;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--app-font-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 120ms;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Marquee keyframes (shared)
   ============================================ */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--left.is-visible {
  transform: none;
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--right.is-visible {
  transform: none;
}

.reveal--scale {
  transform: scale(0.96);
}

.reveal--scale.is-visible {
  transform: none;
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  .bannerLoop__track,
  .firstRowGallery,
  .secondRowGallery,
  .question,
  .textOnGallery .morph {
    animation: none !important;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 900px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br {
    display: none;
  }

  .firstRowGallery img,
  .secondRowGallery img,
  .firstRowGallery:first-child img {
    width: 260px;
    height: 180px;
  }

  .textOnGallery {
    height: 180px;
    min-width: 260px;
  }

  .cardsFunctionSection__track>div {
    flex: 0 0 220px;
    min-height: 200px;
  }

  .abbinai::before,
  .abbinai::after {
    width: 320px;
    height: 280px;
  }

  .question {
    font-size: 13px;
    padding: 10px 16px;
  }
}