/* =========================================================
   STAND STRONG PAGE (inherits ../style.css)
========================================================= */

:root {
  --grad-stand: linear-gradient(90deg, #ffde7a, #ff9a3d, #ffde7a);
}

/* page spacing under the fixed topbar */
.page {
  padding-top: var(--topbar-h);
}

/* =========================
   HERO TOP ROW
========================= */
.ssHeroTop {
  padding: clamp(22px, 3.5vw, 56px) 0 24px;
}

.ssHeroRow {
  width: 90vw; /* 90% of the page */
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); /* prevents spill */
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

/* IMAGE */
.ssMedia {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ssImg {
  width: 100%; /* stay inside the column */
  max-width: 820px; /* keep your intended size cap */
  height: auto;
  display: block;
  object-fit: contain;

  border-radius: 22px;
}

/* RIGHT CONTENT */
.ssRight {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.ssTitle {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.02;
  font-size: clamp(46px, 4.8vw, 90px);
}

/* gold gradient letters */
.ssTitle .letter {
  background: var(--grad-stand);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.ssQuote {
  margin: 0;
  max-width: 52ch;
  font-style: italic;
  opacity: 0.92;
  line-height: 1.55;
}

.ssBtn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;

  color: #140000;
  background: var(--grad-stand);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-position 600ms ease;
}

.ssBtn:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.ssBtn:active {
  transform: translateY(1px);
}

.ssBtnIcon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  border: 2px solid rgba(0, 0, 0, 0.18);
  font-size: 18px;
  line-height: 1;
}

.ssMini {
  margin-top: 4px;
  opacity: 0.85;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* =========================
   WHY SECTION (Full width under hero)
========================= */
.ssWhy {
  padding: 18px 0 70px;
}

.ssWhyInner {
  max-width: 1200px;
}

.ssWhyTitle {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 2.2vw, 30px);
  color: #ffde7a;
  text-transform: uppercase;
}

.ssWhyText p {
  margin: 0 0 16px;
  line-height: 1.85;
  opacity: 0.92;
  font-size: 17px;
}

.ssQuoteBlock {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-left: 4px solid rgba(255, 222, 122, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  opacity: 0.95;
  line-height: 1.7;
  font-style: italic;
}

/* =========================
   Reveal: slide-right variant
========================= */
.reveal.slide-right {
  opacity: 0;
  transform: translateX(28px);
  filter: blur(10px);
}

.reveal.slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 980px) {
  .ssHeroRow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ssHeroTop {
    padding: 18px 0 16px;
  }

  .ssImg {
    width: min(760px, 94vw);
    border-radius: 18px;
  }

  .ssDesc {
    font-size: 16.5px;
  }

  .ssWhy {
    padding: 12px 0 56px;
  }

  .ssWhyText p {
    font-size: 16.5px;
  }
}

@media (max-width: 420px) {
  .ssBtn {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================================
   HOW IT WORKS
========================================================= */
:root {
  --hiw-grad: linear-gradient(90deg, #ffe46a, #ffb24a, #ff7a3d);
}

/* Section spacing */
.hiw {
  padding: 56px 0 80px;
}

.hiwInner {
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* Top Download */
.hiwTopBtn {
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  font-weight: 900;
  letter-spacing: 0.08em;

  color: #140000;
  background: var(--hiw-grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-position 600ms ease;
}

.hiwTopBtn:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.hiwTopBtnIcon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  border: 2px solid rgba(0, 0, 0, 0.18);
  font-size: 18px;
  line-height: 1;
}

/* Headings */
.hiwTitle {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 28px;
  color: #ffde7a;
  text-transform: uppercase;
}

.hiwSub {
  margin: 0;
  opacity: 0.92;
  font-size: 20px;
  letter-spacing: 0.02em;
}

/* Gradient frame utility */
.hiwFrame,
.hiwThumbFrame,
.hiwModalFrame {
  position: relative;
  border-radius: 18px;
  padding: 8px;
  background: var(--hiw-grad);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.hiwFrame {
  width: min(980px, 90vw);
  border-radius: 22px;
  padding: 10px;
}

.hiwVideoWrap {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hiwVideo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* Screenshots title gradient */
.hiwShotsTitle {
  margin: 36px 0 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 26px;
  text-transform: uppercase;
}

.hiwShotsGrad {
  background: linear-gradient(90deg, #6cff4a, #b05cff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Grid */
.hiwGrid {
  width: 100%;
  margin-top: 18px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 40px;
  align-items: start;
}

/* Screenshot card button */
.hiwCard {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  transition: transform 180ms ease;
}

.hiwCard:hover {
  transform: translateY(-3px);
}

.hiwCardTitle {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.hiwThumbFrame {
  width: 100%;
  max-width: 300px;
}

.hiwThumbFrame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: rgba(0, 0, 0, 0.45);
}

.hiwCardDesc {
  font-size: 20px;
  opacity: 0.92;
  line-height: 1.25;
}

/* =========================
   MODAL (pop-out)
========================= */
.hiwModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.hiwModal.is-open {
  display: block;
}

.hiwModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.hiwModalCard {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(980px, 92vw);
  border-radius: 22px;
  padding: 18px 18px 16px;

  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
}

.hiwClose {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.hiwModalFrame {
  padding: 10px;
  border-radius: 20px;
}

.hiwModalFrame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.hiwModalText {
  margin-top: 14px;
  text-align: center;
}

.hiwModalTitle {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hiwModalDesc {
  margin-top: 6px;
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   MOBILE (flex + centered)
========================= */
@media (max-width: 980px) {
  .hiwInner {
    width: 92vw;
  }

  .hiwGrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hiwThumbFrame {
    max-width: 340px;
  }
}

@media (max-width: 520px) {
  .hiwSub {
    font-size: 18px;
  }

  .hiwCardTitle {
    font-size: 22px;
  }

  .hiwCardDesc {
    font-size: 18px;
  }
}

/* ============================
===============================
   CONTACT SECTION (KANA)
==============================
============================ */
.contactSection {
  padding: 84px 0;
}

.contactWrap {
  padding-inline: clamp(14px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 34px);
}

.contactHeader {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* Heading uses your existing .js-pop-heading splitter + reveal pop */
.contactHeading {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.02;
  font-size: clamp(52px, 6.5vw, 98px);
}

/* Make the split letters render with gradient (like product headings) */
.contactHeading .letter {
  display: inline-block;
  background: var(--grad-hot);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  will-change: transform, opacity, background-position;
}

.contactSub {
  margin: 0;
  opacity: 0.92;
  font-size: 18px;
  font-style: italic;
  max-width: 62ch;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

/* FORM CARD */
.contactFormCard {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contactForm {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fieldLabel {
  font-family: var(--heading-font);
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.95;
  text-align: center;
}

.fieldInput {
  width: 100%;
  border-radius: 999px;
  border: 3px solid rgba(255, 122, 122, 0.95);
  background: rgba(255, 255, 255, 0.95);
  color: #140000;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.fieldInput:focus {
  border-color: rgba(255, 43, 43, 1);
  box-shadow: 0 18px 55px rgba(255, 43, 43, 0.22);
}

.fieldTextArea {
  border-radius: 22px;
  resize: vertical;
  min-height: 140px;
}

/* SUBMIT */
.contactSubmit {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #140000;
  background: var(--grad-hot);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow: 0 14px 40px rgba(255, 43, 43, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-position 600ms ease;
}

.contactSubmit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(255, 43, 43, 0.32);
  background-position: 100% 50%;
}

.contactMedia {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* CLICKABLE VIDEO */
.suggestionLink {
  display: block;
  width: min(420px, 88vw);
  aspect-ratio: 1 / 1;

  overflow: hidden;
  box-shadow: none;
  border: none;
  transform: translateZ(0);
}

.suggestionVideo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 1440x1440 fits perfectly */
  object-position: center;
  display: block;
}

/* Email line */
.contactEmail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.mailDot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 43, 43, 0.18);
  border: 1px solid rgba(255, 43, 43, 0.35);
}

.mailLink {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mailLink:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 980px) {
  .contactSection {
    padding: 54px 0;
  }

  .contactGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contactForm {
    width: min(520px, 100%);
  }

  .contactEmail {
    justify-content: center;
    text-align: center;
  }
}

/* ===============================
==================================
   SUPPORT SECTION
==================================
================================ */
.supportSection {
  padding: 84px 0;
}

.supportWrap {
  padding-inline: clamp(14px, 2.2vw, 34px);
}

/* Use a tighter, controlled row width like your topbarInner */
.supportRow {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 72px);
}

/* LEFT column */
.supportLeft {
  flex: 1 1 640px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.supportHeading {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.02;
  font-size: clamp(52px, 6.5vw, 98px);
}

.supportSub {
  margin: 0;
  opacity: 0.92;
  font-size: 18px;
  font-style: italic;
  max-width: 62ch;
}

.supportBody {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 60ch;
}

.supportEmail {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.supportMailDot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.supportMailLink {
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
}

.supportMailLink:hover {
  text-decoration: underline;
}

/* RIGHT column */
.supportOrbitWrap {
  flex: 0 0 clamp(360px, 42vw, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.supportOrbit {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;

  /* subtle focus glow */
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0) 62%
  );
}

.supportItem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(88px, 9.5vw, 122px);
  height: clamp(88px, 9.5vw, 122px);
  border-radius: 999px;
  background: #fff;
  border: 6px solid rgba(255, 43, 43, 0.95);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  text-decoration: none;

  /* ✅ remove rotate from the anchor */
  transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px));

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;

  /* ✅ make sure it can receive clicks */
  pointer-events: auto;
  z-index: 5;
}

.supportItem img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.supportItem:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px))
    rotate(var(--r, 0deg)) scale(1.04);
}

.supportHint {
  margin: 0;
  font-size: 14px;
  opacity: 0.75;
}

/* ===============================
   SUPPORT — MOBILE (CENTER + CONTROLLED SPACING)
================================ */
@media (max-width: 980px) {
  .supportSection {
    padding: 74px 0 48px;
  }

  .supportRow {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  /* remove margin stacking + add controlled spacing */
  .supportLeft {
    align-items: center;
    gap: 10px;
  }

  .supportLeft > * {
    margin-bottom: 0;
  }

  .supportSub {
    margin-bottom: 6px;
    max-width: 44ch;
  }

  /* override desktop margin-top (18px) */
  .supportBody {
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 46ch;
  }

  .supportEmail {
    margin-top: 0;
    margin-bottom: 8px;
    justify-content: center;
  }

  .supportOrbitWrap {
    width: 100%;
    margin-top: 8px;
    gap: 10px;
  }
}

/* Small phones: orbit becomes a neat centered grid + TIGHTER GAPS */
@media (max-width: 520px) {
  /* smaller section padding = removes “dead space” */
  .supportSection {
    padding: 46px 0 28px;
  }

  /* reduce vertical separation between text and icon block */
  .supportRow {
    gap: 10px;
  }

  .supportBody {
    margin-bottom: 8px;
  }

  .supportEmail {
    margin-bottom: 6px;
  }

  .supportOrbitWrap {
    margin-top: 0;
    gap: 6px;
  }

  .supportOrbit {
    width: min(420px, 92vw);
    height: auto;
    aspect-ratio: auto;
    background: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
  }

  .supportOrbit.is-grid .supportItem {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
  }
}
/* ===============================
   SUPPORT — PULL ICONS CLOSER TO DIVIDER
================================ */
@media (max-width: 520px) {
  /* this is the key move */
  .supportOrbitWrap {
    margin-top: -10px; /* pulls icons upward */
  }

  /* keep grid tight */
  .supportOrbit {
    padding-top: 0;
    gap: 8px;
  }
}
