/* Shared product pitch pages — Lightship mosaic experiment */

/* One palette with the main experiment page (sand / gold / charcoal) */
.page-product {
  --product-accent: var(--accent-strong);
  --product-accent-soft: rgba(201, 164, 106, 0.75);
}


.page-product .hero-photo--fit {
  object-fit: contain;
  object-position: right center; /* hug the right margin of the hero frame */
  /* Dark letterbox so the header zone matches the main-page charcoal */
  background: #0c1016;
}

.page-product .hero-veil--wp,
.page-product .hero-veil--product {
  background:
    linear-gradient(
      105deg,
      rgba(10, 14, 18, 0.9) 0%,
      rgba(10, 14, 18, 0.72) 26%,
      rgba(10, 14, 18, 0.22) 46%,
      transparent 62%
    ),
    linear-gradient(180deg, rgba(10, 14, 18, 0.1) 0%, transparent 40%, rgba(10, 14, 18, 0.28) 100%);
}

/* Cadence: new generated hero carries headline — light veil, CTAs only */
.page-product.page-cadence .hero-veil--cadence {
  background: linear-gradient(
    180deg,
    rgba(10, 14, 18, 0.08) 0%,
    transparent 40%,
    rgba(10, 14, 18, 0.42) 100%
  );
}

.page-product.page-cadence .hero-copy--cta-only {
  justify-content: flex-end;
  max-width: 32rem;
}

.page-product.page-cadence .hero-photo {
  object-fit: cover;
  object-position: center center;
}

/* Greenlight: cinematic people + product glow — full-bleed cover, HTML copy on left */
.page-product.page-greenlight .hero-photo {
  object-fit: cover;
  object-position: 62% center;
}

.page-product.page-greenlight .hero-veil--greenlight {
  background:
    linear-gradient(
      105deg,
      rgba(8, 12, 14, 0.92) 0%,
      rgba(8, 12, 14, 0.7) 28%,
      rgba(8, 12, 14, 0.2) 48%,
      transparent 64%
    ),
    linear-gradient(180deg, rgba(8, 12, 14, 0.12) 0%, transparent 42%, rgba(8, 12, 14, 0.35) 100%);
}

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

.page-product .hero-copy {
  max-width: 28rem;
}

.page-product .hero-copy .cta-row {
  flex-wrap: wrap;
  align-items: center;
}

.page-product .hero-copy .cta-row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.7rem 0.95rem;
}

.page-product .eyebrow {
  color: var(--accent-strong);
}

.page-product .hero-title em {
  color: var(--accent-strong);
}

/* Feature list tiles (Team Pulse, Risk Board) — no fake app screenshots */
.page-product .app-tile--list {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 164, 106, 0.16), transparent 55%),
    linear-gradient(160deg, #1a222c 0%, #0c1016 55%, #121820 100%);
  box-shadow: 0 18px 40px rgba(10, 14, 18, 0.22);
}

.page-product .app-tile--list .tile-list {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1rem 1.05rem;
  color: var(--sand);
}

.page-product .app-tile--list .tile-list-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}

.page-product .app-tile--list strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-bottom: 0.55rem;
}

.page-product .app-tile--list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}

.page-product .app-tile--list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(239, 230, 216, 0.82);
}

.page-product .app-tile--list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--product-accent);
}

/* Abstract form-types collage (FormHub Forms · Intake) */
.page-product .app-tile--abstract {
  perspective: 900px;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(201, 164, 106, 0.18), transparent 55%),
    linear-gradient(165deg, #1c2430 0%, #0c1016 55%, #141b24 100%);
}

.page-product .form-abstract {
  position: absolute;
  inset: 0 0 28% 0;
  pointer-events: none;
}

.page-product .fa-card {
  position: absolute;
  border-radius: 10px;
  background: rgba(239, 230, 216, 0.07);
  border: 1px solid rgba(239, 230, 216, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  padding: 0.45rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  backdrop-filter: blur(2px);
}

.page-product .fa-label {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 230, 216, 0.55);
  font-weight: 600;
}

.page-product .fa-field {
  display: block;
  height: 0.55rem;
  border-radius: 4px;
  background: rgba(239, 230, 216, 0.12);
  border: 1px solid rgba(239, 230, 216, 0.18);
  position: relative;
  overflow: hidden;
}

.page-product .fa-field::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 50%;
  width: 42%;
  height: 2px;
  border-radius: 1px;
  background: var(--product-accent-soft);
  transform: translateY(-50%);
}

.page-product .fa-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.page-product .fa-row b {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(239, 230, 216, 0.22);
}

.page-product .fa-dot,
.page-product .fa-box {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border: 1.5px solid rgba(239, 230, 216, 0.4);
  border-radius: 50%;
  box-sizing: border-box;
}

.page-product .fa-box {
  border-radius: 3px;
}

.page-product .fa-dot.is-on,
.page-product .fa-box.is-on {
  border-color: var(--product-accent);
  background: var(--product-accent);
  box-shadow: 0 0 0 2px rgba(201, 164, 106, 0.22);
}

.page-product .fa-scale {
  display: flex;
  gap: 0.22rem;
  align-items: center;
  margin-top: 0.15rem;
}

.page-product .fa-scale i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(239, 230, 216, 0.16);
  border: 1px solid rgba(239, 230, 216, 0.22);
}

.page-product .fa-scale i.is-on {
  background: var(--product-accent);
  border-color: var(--product-accent);
}

.page-product .fa-lines {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-top: 0.1rem;
}

.page-product .fa-lines b {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(239, 230, 216, 0.2);
}

.page-product .fa-lines b:nth-child(1) { width: 92%; }
.page-product .fa-lines b:nth-child(2) { width: 70%; }
.page-product .fa-lines b:nth-child(3) { width: 82%; }

.page-product .fa-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border: 2px solid rgba(201, 164, 106, 0.85);
  color: rgba(224, 186, 120, 0.95);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-8deg);
}

/* Layered, slightly 3D placement — different form types in one frame */
.page-product .fa-card--text {
  left: 8%;
  top: 10%;
  width: 46%;
  transform: rotateY(-18deg) rotateX(4deg) rotate(-2deg);
  transform-origin: left center;
}

.page-product .fa-card--choice {
  right: 6%;
  top: 8%;
  width: 40%;
  transform: rotateY(-22deg) rotateX(5deg) rotate(3deg);
  transform-origin: right center;
}

.page-product .fa-card--checks {
  left: 10%;
  top: 38%;
  width: 38%;
  transform: rotateY(-20deg) rotateX(3deg) rotate(-4deg);
}

.page-product .fa-card--survey {
  right: 8%;
  top: 42%;
  width: 42%;
  transform: rotateY(-24deg) rotateX(6deg) rotate(2deg);
}

.page-product .fa-card--list {
  left: 18%;
  top: 62%;
  width: 44%;
  transform: rotateY(-16deg) rotateX(4deg) rotate(-1deg);
}

.page-product .fa-card--approve {
  right: 10%;
  top: 64%;
  width: auto;
  padding: 0.55rem 0.65rem;
  background: rgba(201, 164, 106, 0.08);
  border-color: rgba(201, 164, 106, 0.35);
  transform: rotateY(-20deg) rotate(6deg);
}

.page-product .app-tile--abstract .tile-foot {
  z-index: 2;
}

/* 3D-angled product screenshot (FormHub Jira Action) — left back, right toward viewer */
.page-product .app-tile--twist {
  perspective: 1100px;
  perspective-origin: 55% 45%;
  background:
    radial-gradient(ellipse 75% 55% at 45% 35%, #2c3a4d 0%, #121820 68%),
    #0c1016;
}

.page-product .app-tile--twist img {
  position: absolute;
  inset: auto;
  left: 50%;
  top: 42%;
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  transform: translate3d(-50%, -50%, 0) rotateY(-26deg) rotateX(6deg) scale(0.92);
  transform-origin: center center;
  transform-style: preserve-3d;
  filter: drop-shadow(-10px 18px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.page-product .app-tile--twist:hover img {
  transform: translate3d(-50%, -50%, 12px) rotateY(-18deg) rotateX(4deg) scale(0.96);
}

/* Opposite yaw — right edge back, left toward viewer */
.page-product .app-tile--twist-opp {
  perspective-origin: 45% 45%;
}

.page-product .app-tile--twist-opp img {
  transform: translate3d(-50%, -50%, 0) rotateY(26deg) rotateX(6deg) scale(0.92);
  filter: drop-shadow(10px 18px 28px rgba(0, 0, 0, 0.45));
}

.page-product .app-tile--twist-opp:hover img {
  transform: translate3d(-50%, -50%, 12px) rotateY(18deg) rotateX(4deg) scale(0.96);
}

/* Leave clear band for tile-foot copy (angle comes from twist / twist-opp) */
.page-product .app-tile--twist-roomy img {
  top: 34%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0) rotateY(-24deg) rotateX(5deg) scale(0.78);
}

.page-product .app-tile--twist-roomy:hover img {
  transform: translate3d(-50%, -50%, 10px) rotateY(-16deg) rotateX(4deg) scale(0.82);
}

.page-product .app-tile--twist-opp.app-tile--twist-roomy img {
  transform: translate3d(-50%, -50%, 0) rotateY(24deg) rotateX(5deg) scale(0.78);
}

.page-product .app-tile--twist-opp.app-tile--twist-roomy:hover img {
  transform: translate3d(-50%, -50%, 10px) rotateY(16deg) rotateX(4deg) scale(0.82);
}

.page-product .app-tile--twist-roomy .tile-foot {
  padding-top: 2.4rem;
  background: linear-gradient(transparent, rgba(10, 14, 18, 0.92) 42%, rgba(10, 14, 18, 0.96));
}

.page-product .app-tile--twist .tile-foot {
  z-index: 2;
}

/* —— Editions cycle —— */
.editions {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 5vw, 4rem) 3.5rem;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(201, 164, 106, 0.14), transparent 55%),
    #ebe6dc;
  border-top: 1px solid rgba(10, 14, 18, 0.08);
}

.editions-head {
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.editions-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.1;
  color: var(--ink);
}

.editions-head p {
  margin: 0;
  color: rgba(10, 14, 18, 0.65);
  font-size: 1.02rem;
  line-height: 1.55;
}

.cycle {
  max-width: 56rem;
  margin: 0 auto 2.75rem;
  border: 1px solid rgba(10, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.cycle-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid rgba(10, 14, 18, 0.08);
  background: rgba(255, 255, 255, 0.35);
}

.cycle-tab {
  flex: 1 1 7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.95rem 1.1rem 0.75rem;
  text-align: left;
  color: rgba(10, 14, 18, 0.5);
  transition: color 0.25s ease, background 0.25s ease;
}

.cycle-tab:hover {
  color: var(--ink);
  background: rgba(10, 14, 18, 0.03);
}

.cycle-tab.is-active {
  color: var(--ink);
}

.cycle-tab-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.cycle-tab-progress {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(10, 14, 18, 0.1);
  overflow: hidden;
}

.cycle-tab-progress i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--product-accent));
}

.cycle.is-playing .cycle-tab.is-active .cycle-tab-progress i {
  animation: cycleFill var(--cycle-ms, 7000ms) linear forwards;
}

.cycle.is-paused .cycle-tab-progress i {
  animation-play-state: paused;
}

@keyframes cycleFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.cycle-pause {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.15rem;
  margin-left: auto;
  border-left: 1px solid rgba(10, 14, 18, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(10, 14, 18, 0.65);
  transition: color 0.2s ease, background 0.2s ease;
}

.cycle-pause:hover,
.cycle-pause[aria-pressed="true"] {
  color: var(--ink);
  background: rgba(10, 14, 18, 0.04);
}

.cycle-pause-icon {
  width: 0.7rem;
  height: 0.7rem;
  position: relative;
}

/* pause glyph = two bars; play = triangle via class */
.cycle-pause-icon::before,
.cycle-pause-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.2rem;
  height: 100%;
  background: currentColor;
}

.cycle-pause-icon::before {
  left: 0.1rem;
}

.cycle-pause-icon::after {
  right: 0.1rem;
}

.cycle-pause[aria-pressed="true"] .cycle-pause-icon::before {
  left: 0.15rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.35rem 0 0.35rem 0.55rem;
  border-color: transparent transparent transparent currentColor;
  background: none;
}

.cycle-pause[aria-pressed="true"] .cycle-pause-icon::after {
  display: none;
}

.cycle-stage {
  position: relative;
  min-height: 22rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.cycle-slide {
  position: absolute;
  inset: clamp(1.5rem, 4vw, 2.4rem);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.cycle-slide.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cycle-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6b35;
  font-weight: 600;
}

.cycle-slide h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  color: var(--ink);
}

.cycle-lede {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  color: rgba(10, 14, 18, 0.68);
  line-height: 1.6;
}

.cycle-points {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 40rem;
}

.cycle-points li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(10, 14, 18, 0.8);
  line-height: 1.45;
  font-size: 0.95rem;
}

.cycle-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--product-accent);
}

.cycle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6b4f1f;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.cycle-link::after {
  content: "→";
}

.cycle-link:hover {
  border-bottom-color: #6b4f1f;
  gap: 0.65rem;
}

.editions-foot {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .editions-foot {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.editions-cta {
  padding: 1.6rem 1.4rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(201, 164, 106, 0.22), transparent 55%),
    #141a22;
  color: var(--sand);
}

.editions-cta h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
}

.editions-cta p {
  margin: 0 0 1.2rem;
  color: var(--sand-mute);
}

.editions-cta .btn-ghost {
  border-color: rgba(239, 230, 216, 0.35);
  color: var(--sand);
}

.page-product .more-links {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--sand-mute);
}

.page-product .more-links a {
  color: var(--accent-strong);
  border-bottom: 1px solid transparent;
}

.page-product .more-links a:hover {
  border-bottom-color: var(--accent-strong);
}

.editions-faq h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
}

.editions-faq details {
  border: 1px solid rgba(10, 14, 18, 0.1);
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.editions-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

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

.editions-faq details p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: rgba(10, 14, 18, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .page-product .hero-lede {
    display: block;
    font-size: 0.82rem;
  }

  .page-product.page-timeaway .hero-copy-main {
    max-width: 92%;
  }

  .page-product.page-timeaway .hero-copy-actions {
    justify-content: flex-start;
  }

  .page-product.page-timeaway .hero-copy--split {
    gap: 0.75rem;
  }

  .cycle-pause-text {
    display: none;
  }

  .cycle-stage {
    min-height: 26rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle.is-playing .cycle-tab.is-active .cycle-tab-progress i {
    animation: none;
    width: 100%;
  }

  .cycle-slide {
    transition: none;
  }
}

/* —— TimeSuite pitch —— */
.page-product.page-timesuite .hero-photo {
  object-fit: cover;
  object-position: center 42%;
}

.page-product.page-timesuite .hero-veil--timesuite {
  background:
    linear-gradient(
      105deg,
      rgba(10, 14, 18, 0.78) 0%,
      rgba(10, 14, 18, 0.55) 28%,
      rgba(10, 14, 18, 0.18) 50%,
      transparent 66%
    ),
    linear-gradient(180deg, rgba(10, 14, 18, 0.12) 0%, transparent 38%, rgba(10, 14, 18, 0.4) 100%);
}

.page-product.page-timesuite .hero-copy {
  max-width: 30rem;
}

.page-product.page-timesuite .app-tile--roman img {
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.95) contrast(1.05);
}

.page-product.page-timesuite .app-tile--roman .tile-foot {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 18, 0.88) 55%);
}

/* —— Timeaway pitch —— */
.page-product.page-timeaway .hero-core {
  background: #0a1220;
}

.page-product.page-timeaway .hero-photo--timeaway {
  object-fit: cover;
  object-position: center 40%;
}

.page-product.page-timeaway .hero-veil--timeaway {
  background:
    linear-gradient(180deg, rgba(8, 18, 38, 0.88) 0%, rgba(8, 18, 38, 0.5) 18%, transparent 42%),
    linear-gradient(90deg, rgba(8, 18, 38, 0.58) 0%, rgba(8, 18, 38, 0.15) 36%, transparent 55%),
    linear-gradient(180deg, transparent 62%, rgba(8, 18, 38, 0.18) 84%, rgba(8, 18, 38, 0.42) 100%);
}

.page-product.page-timeaway .hero-copy--split {
  max-width: none;
  justify-content: space-between;
  align-items: stretch;
  padding: calc(var(--header-h) + clamp(0.65rem, 2vh, 1.15rem)) clamp(1.15rem, 3.2vw, 2.6rem)
    clamp(1.35rem, 3.2vh, 2rem);
}

.page-product.page-timeaway .scroll-cue {
  left: clamp(1.15rem, 3.2vw, 2.6rem);
  transform: none;
}

.page-product.page-timeaway .hero-copy-main {
  max-width: min(34rem, 56%);
  align-self: flex-start;
}

.page-product.page-timeaway .hero-copy-main .hero-lede {
  max-width: 32rem;
}

.page-product.page-timeaway .hero-copy-actions {
  align-self: flex-end;
  margin-left: auto;
  justify-content: flex-end;
  width: 100%;
}

/* Mosaic tiles — readable UI on warm ship-wheel wood (matches hero) */
.page-product.page-timeaway .app-tile {
  background:
    radial-gradient(ellipse 80% 60% at 28% 18%, rgba(201, 164, 106, 0.42) 0%, transparent 58%),
    linear-gradient(165deg, #7a5a38 0%, #5c4432 42%, #3d2818 100%);
  box-shadow: 0 18px 40px rgba(45, 30, 18, 0.28);
}

.page-product.page-timeaway .app-tile--twist {
  background:
    radial-gradient(ellipse 75% 55% at 45% 32%, rgba(201, 164, 106, 0.38) 0%, transparent 52%),
    linear-gradient(155deg, #8b6914 0%, #6b4e32 38%, #4a3524 72%, #3d2818 100%);
}

/* Tiles lean in toward the hero center — eye travels in then out */
.page-product.page-timeaway .app-tile--twist-to-center,
.page-product.page-timeaway .app-tile--twist-in {
  perspective: 1100px;
}

/* Top-left: down + in */
.page-product.page-timeaway .app-tile[data-slot="left-top"] {
  perspective-origin: 68% 58%;
}

.page-product.page-timeaway .app-tile[data-slot="left-top"].app-tile--twist-roomy img {
  top: 36%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(-50%, -50%, 0) rotateY(26deg) rotateX(16deg) scale(0.84);
  filter: drop-shadow(8px 18px 26px rgba(45, 30, 18, 0.38));
}

.page-product.page-timeaway .app-tile[data-slot="left-top"].app-tile--twist-roomy:hover img {
  transform: translate3d(-50%, -50%, 12px) rotateY(20deg) rotateX(12deg) scale(0.88);
}

/* Bottom-left: in + lean back */
.page-product.page-timeaway .app-tile[data-slot="left-bottom"] {
  perspective-origin: 72% 52%;
}

.page-product.page-timeaway .app-tile[data-slot="left-bottom"].app-tile--twist-roomy img {
  top: 34%;
  width: 102%;
  height: 102%;
  object-fit: contain;
  object-position: center center;
  transform: translate3d(-50%, -50%, 0) rotateY(28deg) rotateX(16deg) scale(0.8);
  filter: drop-shadow(8px 16px 24px rgba(45, 30, 18, 0.38));
}

.page-product.page-timeaway .app-tile[data-slot="left-bottom"].app-tile--twist-roomy:hover img {
  transform: translate3d(-50%, -50%, 10px) rotateY(22deg) rotateX(12deg) scale(0.84);
}

/* Right-mid: left + in */
.page-product.page-timeaway .app-tile[data-slot="right-mid"] {
  perspective-origin: 28% 48%;
}

.page-product.page-timeaway .app-tile[data-slot="right-mid"].app-tile--twist-roomy img {
  top: 34%;
  width: 102%;
  height: 102%;
  object-fit: contain;
  object-position: center center;
  transform: translate3d(-50%, -50%, 0) rotateY(-28deg) rotateX(14deg) scale(0.8);
  filter: drop-shadow(-8px 16px 24px rgba(45, 30, 18, 0.38));
}

.page-product.page-timeaway .app-tile[data-slot="right-mid"].app-tile--twist-roomy:hover img {
  transform: translate3d(-50%, -50%, 10px) rotateY(-22deg) rotateX(10deg) scale(0.84);
}

.page-product.page-timeaway .app-tile--twist img {
  filter: drop-shadow(-8px 16px 24px rgba(45, 30, 18, 0.36)) saturate(1.03);
}

.page-product.page-timeaway .app-tile--twist-opp img {
  filter: drop-shadow(8px 16px 24px rgba(45, 30, 18, 0.36)) saturate(1.03);
}

.page-product.page-timeaway .app-tile--twist-roomy .tile-foot,
.page-product.page-timeaway .app-tile .tile-foot {
  background: linear-gradient(transparent, rgba(61, 40, 24, 0.82) 38%, rgba(45, 30, 18, 0.94));
  color: var(--sand);
}

.page-product.page-timeaway .app-tile[data-slot="right-bottom"] img {
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(-50%, -50%, 0) rotateY(-24deg) rotateX(-12deg) scale(0.9);
}

.page-product.page-timeaway .app-tile[data-slot="right-bottom"]:hover img {
  transform: translate3d(-50%, -50%, 10px) rotateY(-18deg) rotateX(-8deg) scale(0.94);
}

.page-product.page-timeaway .app-tile[data-slot="right-bottom"] {
  perspective-origin: 32% 62%;
}

.page-product.page-timeaway .app-tile .tile-foot span {
  color: rgba(239, 230, 216, 0.82);
}

.suite-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 2rem 0 0;
}

.suite-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1rem 1.1rem;
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(201, 164, 106, 0.14), transparent 55%),
    linear-gradient(165deg, #1a1612 0%, #0c1016 55%, #14110e 100%);
  border: 1px solid rgba(239, 230, 216, 0.1);
  color: var(--sand);
  box-shadow: 0 12px 28px rgba(10, 14, 18, 0.12);
}

.suite-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0.7rem;
  background: #0a0e12;
  flex: 0 0 auto;
}

.suite-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.suite-card .suite-role {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}

.suite-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
  flex: 1 1 auto;
}

.suite-card li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.74rem;
  line-height: 1.35;
  color: rgba(239, 230, 216, 0.82);
}

.suite-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--accent-strong);
}

.suite-card a {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .suite-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.suite-feed {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(201, 164, 106, 0.18), transparent 50%),
    linear-gradient(135deg, #14110e 0%, #0a0e12 55%, #1a1612 100%);
  border: 1px solid rgba(239, 230, 216, 0.12);
  color: var(--sand);
}

.suite-feed h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.suite-feed > p {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  color: rgba(239, 230, 216, 0.82);
}

.suite-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.suite-flow li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(239, 230, 216, 0.8);
}

.suite-flow strong {
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .suite-flow li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
