.flowless-product-page {
  background: #05070c;
  color: #fff;
  overflow: hidden;
}

.fp-kicker {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(120, 220, 255, .82);
}

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

.fp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 100svh;

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

  padding: 7.5rem 8% 6rem;

  text-align: center;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;

  background:
    url("./assets/images/flowless/flowless-hero-cinematic.png")
    center / cover no-repeat;

  z-index: -3;

  filter:
    brightness(0.58)
    contrast(1.18)
    saturate(0.9);

  transform: scale(1.02);
}

.fp-hero__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(0, 185, 230, 0.10),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(2,4,10,0.36) 0%,
      rgba(2,4,10,0.10) 40%,
      rgba(2,4,10,0.54) 100%
    );

  z-index: -2;
}

.fp-hero__content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 760px;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0 auto;

  text-align: center;
  gap: 0;
  transform: translateY(0);
}

.fp-hero .fp-kicker {
  margin-bottom: 1.5rem;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.48em;
  text-transform: uppercase;

  color: rgba(103, 226, 255, 0.92);
}

.fp-hero h1 {
  margin: 0 0 1rem;

  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.98;

  font-weight: 900;
  letter-spacing: -0.09em;

  color: #fff;

  text-shadow:
    0 10px 40px rgba(0,0,0,0.42);
}

.fp-hero p:not(.fp-kicker) {
  max-width: 32ch;

  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.9;

  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;

  margin: 3rem 0;
}

.fp-tags span {
  padding: 0.85rem 1.35rem;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(18px);

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;

  color: rgba(255,255,255,0.92);
}

.fp-actions {
  display: flex;
  justify-content: center;

  margin-top: 1rem;
}

.fp-hero-cta-main {
  position: relative;
  isolation: isolate;

  min-width: 190px;
  padding: 0.9rem 1.5rem;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.08)
    );

  color: rgba(255,255,255,0.92);
  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 800;

  backdrop-filter: blur(14px);

  overflow: hidden;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.fp-hero-cta-main::before {
  content: "";
  position: absolute;
  inset: -1px;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      rgba(103,226,255,0),
      rgba(103,226,255,0.9),
      rgba(255,255,255,0.95),
      rgba(103,226,255,0)
    );

  opacity: 0;
  z-index: -2;

  transition: opacity 0.35s ease;
}

.fp-hero-cta-main::after {
  content: "";
  position: absolute;
  inset: 1px;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(8,18,30,0.92),
      rgba(18,42,58,0.72)
    );

  z-index: -1;

  transition:
    background 0.4s ease,
    opacity 0.35s ease;
}

.fp-hero-cta-main:hover {
  transform: translateY(-4px) scale(1.04);

  color: #ffffff;

  border-color: rgba(103,226,255,0.55);

  box-shadow:
    0 24px 80px rgba(0,0,0,0.38),
    0 0 34px rgba(103,226,255,0.28),
    0 0 90px rgba(103,226,255,0.14);
}

.fp-hero-cta-main:hover::before {
  opacity: 1;
}

.fp-hero-cta-main:hover::after {
  background:
    linear-gradient(
      135deg,
      rgba(10,34,52,0.96),
      rgba(28,92,116,0.72)
    );
}

.fp-hero-cta-main span {
  position: relative;
  z-index: 2;
}

.fp-hero-cta-main span:last-child {
  transition:
    transform 0.4s cubic-bezier(.16,1,.3,1),
    opacity 0.35s ease;
}

.fp-hero-cta-main:hover span:last-child {
  transform: translateX(8px);
}

.fp-hero::after {
  content: "AI Reservation System";

  position: absolute;
  left: 50%;
  bottom: 7.5rem;

  transform: translateX(-50%);

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.34em;

  color: rgba(255,255,255,0.42);
}

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

@media (max-width: 768px) {
  .fp-hero {
    min-height: 100svh;
    padding: 9rem 6% 5rem;
  }

  .fp-hero__content {
    max-width: 360px;
  }

  .fp-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 1.08;
  }

  .fp-hero p:not(.fp-kicker) {
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }

  .fp-tags {
    gap: 0.6rem;
    margin: 2.4rem 0;
  }

  .fp-tags span {
    padding: 0.72rem 1rem;
    font-size: 0.72rem;
  }

  .fp-actions {
    width: 100%;
  }

  .fp-actions a {
    width: 100%;
    min-width: 0;
  }

  .fp-hero::after {
    bottom: 3rem;
    font-size: 0.62rem;
  }
}

/* ========================================
FEATURES
======================================== */

.fp-features {
  padding: 12rem 8%;
  background: #070a10;
}

.fp-section-head {
  max-width: 920px;

  margin: 0 auto 5rem;

  text-align: center;
}

.fp-section-head h2 {
  margin: 1.2rem 0 1.8rem;

  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.04;

  font-weight: 900;
  letter-spacing: -0.06em;
}

.fp-section-head p {
  max-width: 32ch;

  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.fp-feature {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;

  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;

  text-align: center;
}

.fp-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;

  border-radius: 1.4rem;

  filter:
    saturate(.9)
    contrast(1.08);
}

.fp-num {
  margin-top: 1.4rem;

  font-size: .7rem;
  letter-spacing: .24em;

  color: rgba(120,220,255,.8);

  text-align: center;
}

.fp-feature h3 {
  margin: 0.8rem 0 1rem;

  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.05;

  font-weight: 900;
  letter-spacing: -0.05em;

  text-align: center;
}

.fp-feature p:last-child {
  max-width: 32ch;

  margin: 0 auto;

  text-align: center;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

/* ========================================
FLOW PHILOSOPHY
======================================== */

.fp-flow--philosophy {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 13rem 8%;

  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(103,226,255,0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(240,147,251,0.10),
      transparent 40%
    ),
    #05070c;
}

.fp-flow--philosophy::before {
  content: "";

  position: absolute;
  inset: 8%;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3.6rem;

  pointer-events: none;
  z-index: -1;
}

.fp-flow__head {
  max-width: 920px;
  margin: 0 auto 6rem;

  text-align: center;
}

.fp-flow__head .fp-kicker {
  margin-bottom: 1.4rem;
}

.fp-flow__head h2 {
  margin: 1.2rem 0 1.8rem;

  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.04;

  font-weight: 900;
  letter-spacing: -0.06em;

  color: #fff;
}

.fp-flow__head p {
  max-width: 32ch;
  margin: 0 auto;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-flow__journey {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: stretch;
  gap: 1.2rem;

  max-width: 1280px;
  margin: 0 auto;
}

.fp-flow-step {
  position: relative;
  overflow: hidden;

  min-height: 360px;

  padding: 2.2rem;

  border-radius: 2.4rem;
  border: 1px solid rgba(255,255,255,0.12);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.105),
      rgba(255,255,255,0.035)
    );

  backdrop-filter: blur(22px);

  box-shadow:
    0 34px 90px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 0.55s cubic-bezier(.16,1,.3,1),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.fp-flow-step::before {
  content: "";

  position: absolute;
  inset: -1px;

  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(103,226,255,0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 86%,
      rgba(240,147,251,0.14),
      transparent 40%
    );

  opacity: 0;

  transition: opacity 0.45s ease;
}

.fp-flow-step:hover {
  transform: translateY(-10px);

  border-color: rgba(103,226,255,0.36);

  box-shadow:
    0 46px 120px rgba(0,0,0,0.36),
    0 0 70px rgba(103,226,255,0.12);
}

.fp-flow-step:hover::before {
  opacity: 1;
}

.fp-flow-step span,
.fp-flow-step h3,
.fp-flow-step p {
  position: relative;
  z-index: 1;
}

.fp-flow-step span {
  display: block;

  margin-bottom: 4.8rem;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;

  color: rgba(103,226,255,0.86);
}

.fp-flow-step h3 {
  margin-bottom: 1.2rem;

  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.05;

  font-weight: 900;
  letter-spacing: -0.05em;

  color: #fff;
}

.fp-flow-step p {
  max-width: 32ch;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-flow-line {
  align-self: center;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103,226,255,0.58),
      transparent
    );
}

.fp-flow__closing {
  margin: 5rem auto 0;
  max-width: 32ch;

  text-align: center;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: -0.02em;

  color: rgba(255,255,255,0.62);
}

.fp-flow__closing span {
  color: #fff;

  background:
    linear-gradient(
      120deg,
      #67e2ff,
      #ffffff,
      #f093fb
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
FLOW RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .fp-flow--philosophy {
    padding: 8rem 6%;
  }

  .fp-flow--philosophy::before {
    inset: 4%;
    border-radius: 2.4rem;
  }

  .fp-flow__head {
    margin-bottom: 4rem;
  }

  .fp-flow__head h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.08;
  }

  .fp-flow__head p {
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }

  .fp-flow__journey {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .fp-flow-line {
    width: 1px;
    height: 46px;
    margin: 0 auto;

    background:
      linear-gradient(
        180deg,
        transparent,
        rgba(103,226,255,0.58),
        transparent
      );
  }

  .fp-flow-step {
    min-height: auto;

    padding: 1.8rem;
    border-radius: 1.9rem;

    text-align: center;
  }

  .fp-flow-step span {
    margin-bottom: 2.8rem;
  }

  .fp-flow-step h3 {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  .fp-flow-step p {
    max-width: 30ch;
    margin: 0 auto;

    font-size: 0.94rem;
    line-height: 1.9;
  }

  .fp-flow__closing {
    margin-top: 3rem;
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }
}

/* ========================================
INDUSTRIES / CUSTOMIZE
======================================== */

.fp-industries,
.fp-customize {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  align-items: center;

  padding: 12rem 8%;
}

.fp-industries {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(103,226,255,0.10),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(240,147,251,0.08),
      transparent 38%
    ),
    #090c12;
}

.fp-customize {
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(103,226,255,0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 80% 74%,
      rgba(240,147,251,0.08),
      transparent 40%
    ),
    #070a10;

  color: #fff;
}

.fp-industries h2,
.fp-customize h2 {
  margin: 1.2rem 0 1.8rem;

  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.04;

  font-weight: 900;
  letter-spacing: -0.06em;
}

.fp-industries p,
.fp-customize p {
  max-width: 32ch;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-industries .fp-kicker,
.fp-customize .fp-kicker {
  color: rgba(103,226,255,0.82);
}

.fp-industries__visual,
.fp-customize__visual {
  position: relative;
}

.fp-industries__visual img,
.fp-customize__visual img {
  width: 100%;
  display: block;

  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 40px 120px rgba(0,0,0,0.42),
    0 0 80px rgba(103,226,255,0.08);

  transition:
    transform 0.8s cubic-bezier(.16,1,.3,1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.fp-industries__visual img:hover,
.fp-customize__visual img:hover {
  transform: translateY(-10px) scale(1.015);

  border-color: rgba(103,226,255,0.22);

  box-shadow:
    0 60px 160px rgba(0,0,0,0.55),
    0 0 120px rgba(103,226,255,0.14);
}

/* ========================================
INDUSTRIES / CUSTOMIZE RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .fp-industries,
  .fp-customize {
    grid-template-columns: 1fr;
    gap: 3rem;

    padding: 8rem 6%;
  }

  .fp-industries h2,
  .fp-customize h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.08;
  }

  .fp-industries p,
  .fp-customize p {
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }

  .fp-industries__visual img,
  .fp-customize__visual img {
    border-radius: 1.6rem;
  }
}
.fp-industries,
.fp-customize {
    text-align: center;
}

.fp-industries__content,
.fp-customize__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fp-industries p,
.fp-customize p {
    margin-inline: auto;
}

.fp-industries .fp-kicker,
.fp-customize .fp-kicker {
    justify-content: center;
}
.fp-industries__visual,
.fp-customize__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}
/* ========================================
FINAL
======================================== */

.fp-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 14rem 8%;

  background:
    linear-gradient(
      180deg,
      rgba(5,7,12,0.42),
      rgba(5,7,12,0.72)
    ),

    radial-gradient(
      circle at 50% 30%,
      rgba(103,226,255,0.08),
      transparent 36%
    ),

    radial-gradient(
      circle at 82% 72%,
      rgba(240,147,251,0.06),
      transparent 40%
    ),

    url("./assets/images/flowless/final-arrival-experience-bg.png")
    center / cover no-repeat;
}

.fp-final::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0)
    );

  pointer-events: none;
}

.fp-final__inner {
  position: relative;
  z-index: 1;

  max-width: 860px;
  min-height: 520px;

  display: grid;
  align-content: center;

  margin: 0 auto;

  text-align: center;
}

.fp-final h2 {
  margin: 1.2rem 0 1.8rem;

  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.04;

  font-weight: 900;
  letter-spacing: -0.06em;

  color: #fff;
}

.fp-final p {
  max-width: 32ch;

  margin: 0 auto 2.8rem;

  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;

  color: rgba(255,255,255,0.62);
}

.fp-final .fp-actions {
  justify-content: center;
}
/* ========================================
GLOBAL RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .fp-hero,
  .fp-features,
  .fp-flow,
  .fp-industries,
  .fp-customize,
  .fp-final {
    padding-left: 6%;
    padding-right: 6%;
  }

  .fp-feature-grid,
  .fp-industries,
  .fp-customize {
    grid-template-columns: 1fr;
  }

  .fp-section-head h2,
  .fp-final h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.08;
  }

  .fp-section-head p,
  .fp-final p {
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }

  .fp-feature h3 {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  .fp-feature p:last-child {
    max-width: 30ch;

    font-size: 0.94rem;
    line-height: 1.9;
  }
}
@media (min-width: 901px) {

  body:has(.flowless-product-page) .header-nav a {
    color: rgba(255,255,255,0.92);
    -webkit-text-fill-color: rgba(255,255,255,0.92);
  }

  body:has(.flowless-product-page) .header-nav a:hover {
    color: #67e2ff;
    -webkit-text-fill-color: #67e2ff;
  }

  body:has(.flowless-product-page) .header-cta {
    border-color: rgba(255,255,255,0.18);

    background:
      linear-gradient(
        135deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.06)
      );
  }

  body:has(.flowless-product-page) .header-cta-text,
  body:has(.flowless-product-page) .header-cta-icon {
    color: #fff;
  }

}