/* ============================
   THEME VARIABLES
============================ */
:root {
  --red: #ff2b2b;
  --red-dark: #e11f1f;
  --white: #ffffff;
  --black: #0b0b0b;
  --overlay: rgba(0, 0, 0, 0.62);

  --radius-xl: 42px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);

  --topbar-h: 86px;

  --heading-font: "Cinzel", Georgia, "Times New Roman", serif;
  --body-font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --grad-hot: linear-gradient(90deg, #ff2b2b, #ff7a7a, #ff2b2b);
}

/* Fix anchor scrolling under a fixed header (Chrome + Instagram in-app browser) */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
}

section[id] {
  scroll-margin-top: calc(var(--topbar-h) + var(--safe-top) + 14px);
}
/* ============================
   BASE
============================ */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

/* stop any sideways scroll from flex-basis / absolute art */
html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body-font);
}

/* Container */
.container {
  width: min(1600px, 96%);
  margin: 0 auto;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

/* ============================
   BACKGROUND VIDEO
============================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bgOverlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

/* Reduce motion users: no video */
@media (prefers-reduced-motion: reduce) {
  .bgVideo {
    display: none;
  }
  .bg {
    background: #000;
  }
}

/* ============================
   TOPBAR (STICKY)
============================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--red);
  z-index: 50;
}

.topbarInner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 4;
}

.brandLogo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.iconBtn {
  width: 62px;
  height: 62px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.iconBtn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.icon {
  display: block;
  width: 34px;
  height: 26px;
  position: relative;
}

.iconHamburger::before,
.iconHamburger::after,
.iconHamburger {
  content: "";
}

.iconHamburger {
  background: linear-gradient(
    to bottom,
    #fff 0 18%,
    transparent 18% 41%,
    #fff 41% 59%,
    transparent 59% 82%,
    #fff 82% 100%
  );
  border-radius: 6px;
}

.iconX {
  width: 32px;
  height: 32px;
}

.iconX::before,
.iconX::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 5px;
  background: #fff;
  border-radius: 6px;
  transform-origin: center;
}

.iconX::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.iconX::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.supportBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.supportBtn:active {
  transform: translateY(1px);
}

.topbarInner > :not(.brand) {
  position: relative;
  z-index: 2;
}

.heart {
  font-size: 18px;
  line-height: 1;
}

/* ============================
   MENU OVERLAY (ANIMATED)
============================ */
.menuOverlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 0s linear 240ms;
}

.menuOverlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0s linear 0s;
}

.menuBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.menuOverlay.open .menuBackdrop {
  opacity: 1;
}

.menuCard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 88vw);
  padding: 26px 22px 22px;
  border-radius: var(--radius-xl);
  background: var(--red);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  filter: blur(10px);
  transition:
    transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 240ms ease,
    filter 260ms ease;
}

.menuOverlay.open .menuCard {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
}

.menuPill {
  width: min(340px, 78%);
  margin: 0 auto 18px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--red);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 26px;
}

.menuItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 30px;
  font-family: Georgia, "Times New Roman", serif;
  padding: 10px 12px;
  border-radius: 14px;
}

.menuItem:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menuIcon {
  font-size: 28px;
  width: 38px;
  text-align: center;
}

.menuSupport {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(360px, 86%);
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 26px;
}

/* ============================
   PAGE SECTIONS
============================ */
.page {
  padding-top: var(--topbar-h);
}

.hero {
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
}

.heroContent {
  max-width: 720px;
}

.heroSpacer {
  height: 1px;
}

.section {
  padding: 70px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
}

/* ✅ FIXED: your typo was ".section p p:not(...)" */
.section p:not(.aboutKicker) {
  margin: 0;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
}

/* ============================
   HOME SECTION (FLEX VERSION)
============================ */
.home-section {
  color: #fff;
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
  padding: 60px 20px;
  overflow: hidden;
}

.home-container {
  width: min(1600px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 90px);
}

/* allow lanes to wrap instead of pushing text off-screen */
.home-container {
  flex-wrap: wrap;
}

/* Left artwork lane */
.images-container {
  position: relative;
  flex: 0 0 clamp(280px, 36vw, 520px);
  aspect-ratio: 1 / 1;
  --lock-x: -120px;
  --phone-x: 70px;
}

/* shared */
.lock-image,
.phone-image {
  position: absolute;
  left: 50%;
  height: auto;
  width: clamp(220px, 30vw, 420px);
  object-fit: contain;
  opacity: 0;
}

.lock-image {
  bottom: 0;
  animation: glideLock 1.2s ease-out forwards;
}

.phone-image {
  left: clamp(70px, 10vw, 130px);
  bottom: -10px;
  opacity: 0;
  animation: glideInFromBottom 1.2s ease-out 0.25s forwards;
}

/* Right text lane */
.content-container {
  flex: 1 1 640px;
  max-width: 760px;
  min-width: 0; /* IMPORTANT: let the text lane shrink (prevents overflow) */
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
}

/* ============================
   HEADING: GRADIENT + LETTER POP
============================ */
.animated-heading {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.08em;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.6vw, 4.1rem);
  background: none !important;
}

/* Each letter carries the gradient */
.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);
  animation:
    popIn 520ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards,
    headingGradient 5s ease-in-out infinite;
  will-change: transform, opacity, background-position;
}

/* spaces */
.letter.space {
  width: 0.3em;
}

/* delay ladder (home heading) */
.letter:nth-child(1) {
  animation-delay: 0.05s;
}
.letter:nth-child(2) {
  animation-delay: 0.1s;
}
.letter:nth-child(3) {
  animation-delay: 0.15s;
}
.letter:nth-child(4) {
  animation-delay: 0.2s;
}
.letter:nth-child(5) {
  animation-delay: 0.25s;
}
.letter:nth-child(6) {
  animation-delay: 0.3s;
}
.letter:nth-child(7) {
  animation-delay: 0.35s;
}
.letter:nth-child(8) {
  animation-delay: 0.4s;
}
.letter:nth-child(9) {
  animation-delay: 0.45s;
}
.letter:nth-child(10) {
  animation-delay: 0.5s;
}
.letter:nth-child(11) {
  animation-delay: 0.55s;
}
.letter:nth-child(12) {
  animation-delay: 0.6s;
}
.letter:nth-child(13) {
  animation-delay: 0.65s;
}
.letter:nth-child(14) {
  animation-delay: 0.7s;
}
.letter:nth-child(15) {
  animation-delay: 0.75s;
}
.letter:nth-child(16) {
  animation-delay: 0.8s;
}
.letter:nth-child(17) {
  animation-delay: 0.85s;
}
.letter:nth-child(18) {
  animation-delay: 0.9s;
}
.letter:nth-child(19) {
  animation-delay: 0.95s;
}
.letter:nth-child(20) {
  animation-delay: 1s;
}
.letter:nth-child(21) {
  animation-delay: 1.05s;
}
.letter:nth-child(22) {
  animation-delay: 1.1s;
}
.letter:nth-child(23) {
  animation-delay: 1.15s;
}
.letter:nth-child(24) {
  animation-delay: 1.2s;
}
.letter:nth-child(25) {
  animation-delay: 1.25s;
}
.letter:nth-child(26) {
  animation-delay: 1.3s;
}
.letter:nth-child(27) {
  animation-delay: 1.35s;
}
.letter:nth-child(28) {
  animation-delay: 1.4s;
}

/* Description */
.description {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  max-width: 680px;
  opacity: 0.95;
}

.kana {
  color: #ff2b2b;
  font-weight: 800;
}
.web {
  font-weight: 700;
}

/* CTA */
.cta-button {
  margin-top: 12px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  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);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 700ms ease-out 1.25s forwards;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(255, 43, 43, 0.35);
  background-position: 100% 50%;
}

.cta-button:hover::after {
  transform: translateX(120%);
}

/* ============================
   ANIMATIONS
============================ */
@keyframes headingGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home image animations */
@keyframes glideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(220px) scale(0.96);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes glideLock {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% + var(--lock-x) - 180px)) translateY(80px)
      scale(0.96);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateX(calc(-50% + var(--lock-x) + 10px)) translateY(-6px)
      scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(calc(-50% + var(--lock-x))) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes glidePhone {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% + var(--phone-x))) translateY(220px)
      scale(0.96);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateX(calc(-50% + var(--phone-x))) translateY(-8px)
      scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(calc(-50% + var(--phone-x))) translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ============================
   FOOTER (NEATER / TIGHTER)
============================ */
.footer {
  background: var(--red);
  padding: 34px 0 22px; /* tighter */
  margin-top: 40px;
}

.footerInner {
  color: var(--white);
}

/* TOP AREA */
.footerTop {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

/* BRAND */
.footerBrand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLogo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.footerTagline {
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* LINKS */
.footerCols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ✅ was 3 */
  gap: 22px;
  justify-items: start;
}

.footerCol h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.footerCol a {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 6px 0;
  width: fit-content;
}

.footerCol a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* SOCIALS (sit tighter + cleaner) */
.footerSocials {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footerSocial {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 18px;

  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);

  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.footerSocial:hover {
  background: rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* BOTTOM BAR */
.footerBottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footerBottom small {
  color: rgba(255, 255, 255, 0.9);
}

.footerSupport {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.footerSupport:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  .footerTop {
    grid-template-columns: 1fr;
  }

  .footerCols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer {
    padding: 28px 0 18px;
  }

  .footerLogo {
    width: 56px;
    height: 56px;
  }

  .footerCols {
    grid-template-columns: 1fr; /* stack */
    gap: 16px;
  }

  .footerBottom {
    justify-content: center;
    text-align: center;
  }

  .footerSocial {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footerSocial:active {
    transform: scale(0.95);
  }
}

/* ============================
   RESPONSIVE (GENERAL)
============================ */
@media (min-width: 900px) {
  .supportText {
    display: inline;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar-h: 78px;
  }

  .topbarInner {
    padding: 0 18px;
    grid-template-columns: 76px 1fr 76px;
  }

  .brandLogo {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .supportBtn {
    position: relative;
    transform: none;
    right: auto;
    top: auto;
    width: 44px;
    height: 44px;
    min-height: 0;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .supportText {
    display: none;
  }

  .heart {
    font-size: 18px;
    line-height: 1;
    display: block;
  }

  .menuItem {
    font-size: 26px;
  }

  .menuPill {
    font-size: 22px;
  }

  .menuSupport {
    font-size: 22px;
  }

  .footerTop {
    grid-template-columns: 1fr;
  }

  .footerCols {
    grid-template-columns: 1fr 1fr;
  }

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .footerCols {
    grid-template-columns: 1fr;
  }
}

/* ============================
   HOME: MOBILE/TABLET SPACING + CENTERING
============================ */
@media (max-width: 980px) {
  .home-section {
    padding: 14px 16px 22px;
    min-height: unset;
    justify-content: flex-start;
  }

  .home-container {
    width: min(680px, 94%);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .images-container {
    width: min(420px, 92vw) !important;
    flex: 0 0 auto;
    margin: 0 auto !important;
    aspect-ratio: 1 / 0.82 !important;
    max-height: 52vh !important;
    --lock-x: 0px !important;
    --phone-x: 0px !important;
  }

  .lock-image,
  .phone-image {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .content-container {
    width: 100% !important;
    max-width: 680px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .cta-button {
    align-self: center;
  }
}

@media (max-width: 420px) {
  .home-section {
    padding: 4px 14px !important;
    justify-content: flex-start !important;
  }

  .home-container {
    gap: 5px !important;
  }

  .images-container {
    width: min(360px, 92vw) !important;
    max-height: 46vh !important;
  }
}

/* ============================
   ABOUT SECTION (KANA)
============================ */
.aboutSection {
  padding: 78px 0;
}

.aboutWrap {
  padding-inline: clamp(14px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(42px, 6vw, 82px);
}

.aboutRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 60px);
  padding-inline: clamp(0px, 1vw, 10px);
}

.aboutRow.reverse {
  flex-direction: row-reverse;
}

.aboutText {
  flex: 1 1 620px;
  min-width: 0;
}

.aboutSection .aboutKicker {
  font-family: var(--heading-font);
  font-size: clamp(28px, 5vw, 36px);
  letter-spacing: 0.22em;
  margin: 0 0 16px;
  opacity: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

.aboutHeading {
  margin: 0 0 16px;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.12;
  font-size: clamp(28px, 3.2vw, 46px);
  text-wrap: balance;
}

.aboutHeading .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;
}

.aboutBody {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.72;
  opacity: 0.92;
  max-width: 720px;
}

.aboutBrand {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.aboutMedia {
  flex: 0 1 520px;
  display: flex;
  justify-content: center;
}

.aboutImg {
  width: min(520px, 92vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.45));
}

.aboutImgTall {
  max-height: 680px;
}

.aboutImgSquare {
  max-width: 460px;
}

.aboutActions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aboutBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #140000;
  background: var(--grad-hot);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow: 0 14px 40px rgba(255, 43, 43, 0.22);
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background-position 600ms ease;
}

.aboutBtn::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.aboutBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(255, 43, 43, 0.32);
  background-position: 100% 50%;
}

.aboutBtn:hover::after {
  transform: translateX(120%);
}

@media (max-width: 980px) {
  .aboutSection {
    padding: 36px 0 78px;
  }

  .aboutRow,
  .aboutRow.reverse {
    flex-direction: column;
  }

  .aboutMedia {
    width: 100%;
  }

  .aboutText {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutBody {
    margin-left: auto;
    margin-right: auto;
  }

  .aboutActions {
    justify-content: center;
    width: 100%;
  }

  .aboutKicker {
    text-align: center;
  }

  .aboutImgTall {
    max-height: 58vh;
  }

  .aboutImgSquare {
    max-width: min(420px, 92vw);
  }
}

@media (max-width: 420px) {
  .aboutSection {
    padding: 22px 0;
  }
}

/* ============================
   SCROLL REVEALS (shared)
============================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

.reveal.fade.in-view {
  transition-delay: var(--d, 0ms);
}

.reveal.pop.in-view .letter {
  animation:
    aboutPopIn 520ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards,
    headingGradient 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 34ms);
}

.reveal.mediaLeft {
  transform: translateX(-90px) scale(0.98);
}
.reveal.mediaRight {
  transform: translateX(90px) scale(0.98);
}

.reveal.mediaLeft.in-view,
.reveal.mediaRight.in-view {
  transform: translateX(0) scale(1);
  transition:
    transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 900ms ease,
    filter 900ms ease;
}

@keyframes aboutPopIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================
   PRODUCTS SECTION
============================ */
.productsSection {
  padding: 84px 0;
}

.productsWrap {
  padding-inline: clamp(14px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 4vw, 62px);
}

.productsHeader {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Big PRODUCTS title */
.productsTitle {
  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);
  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;
  animation: headingGradient 5s ease-in-out infinite;
}

.productsSub {
  margin: 0;
  opacity: 0.92;
  font-size: 18px;
  font-style: italic;
}

/* Row layout */
.productRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 4vw, 60px);
}

.productRow.reverse {
  flex-direction: row-reverse;
}

/* Clickable text block */
.productText {
  flex: 1 1 650px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.productTop {
  display: flex;
  align-items: center;
  gap: 16px;
}

.productLogo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

/* Product name (gradient letters via JS pop) */
.productName {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
}

.productName .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;
}

.productDesc {
  margin: 0;
  font-size: clamp(19px, 1.25vw, 22px);
  line-height: 1.75;
  opacity: 0.92;
  max-width: 720px;
}

/* Media */
.productMedia {
  flex: 0 1 520px;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
}

.productImage {
  width: min(520px, 92vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.45));
  transform: translateZ(0);
}

/* Rings */
.ring {
  border: 6px solid rgba(255, 255, 255, 0.12);
}
.ringGold {
  border-color: rgba(255, 199, 64, 0.85);
}
.ringGreen {
  border-color: rgba(120, 255, 190, 0.75);
}
.ringPink {
  border-color: rgba(255, 110, 190, 0.75);
}

/* Hover */
.productText:hover .productDesc,
.productText:focus-visible .productDesc {
  opacity: 1;
}
.productMedia:hover .productImage {
  transform: scale(1.01);
}

/* Products float reveal variants */
.reveal.floatLeft {
  opacity: 0;
  transform: translateX(-90px) translateY(10px) scale(0.98);
  filter: blur(8px);
}

.reveal.floatRight {
  opacity: 0;
  transform: translateX(90px) translateY(10px) scale(0.98);
  filter: blur(8px);
}

.reveal.floatLeft.in-view,
.reveal.floatRight.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
  transition:
    transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 900ms ease,
    filter 900ms ease;
}

/* ============================
   PRODUCTS — MOBILE FIX (CLEAN)
============================ */
@media (max-width: 980px) {
  .productsSection {
    padding: 54px 0;
  }

  .productsHeader {
    align-items: center;
    text-align: center;
  }

  /* STACK: image then text, tight spacing */
  .productRow,
  .productRow.reverse {
    display: flex; /* keep flex active */
    flex-direction: column; /* stack */
    align-items: center;
    justify-content: flex-start;
    gap: 12px; /* controls spacing between image + text */
  }

  /* IMAGE FIRST */
  .productMedia {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 0;
    margin: 0;
  }

  .productImage {
    width: min(420px, 92vw);
    margin: 0;
  }

  /* TEXT UNDER IMAGE */
  .productText {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .productTop {
    justify-content: center;
    gap: 12px;
  }

  .productDesc {
    margin: 0;
    max-width: 42ch;
  }

  /* IMPORTANT: stop left/right float animations shifting layout on phones */
  .reveal.floatLeft,
  .reveal.floatRight {
    transform: translateY(12px) scale(0.98);
  }
}

/* ============================
===============================
   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;
  }
}
