/* Typography: clean Geist Sans setup. Headline and body both use Geist. */
:root {
  --white: #ffffff;
  --off: #f0f0ee;
  --ink: #0d0d0d;
  --body: #2a2a28;
  --mid: #5a5a56;
  --ghost: #9a9994;
  --line: #d8d8d6;
  --burg: #8b1a2f;
  --green: #1d9e75;
  --amber: #c88a1f;
  --D: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --B: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--B);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* ── CURSOR ── */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s,
    opacity 0.3s;
}
#ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.22;
  transition:
    border-color 0.3s,
    opacity 0.3s;
}
body.inv #cur {
  background: var(--white);
}
body.inv #ring {
  border-color: var(--white);
  opacity: 0.5;
}
body.hov #cur {
  width: 42px;
  height: 42px;
  background: var(--burg);
  mix-blend-mode: normal;
}
body.hov #ring {
  opacity: 0;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
  a,
  button,
  .tshirt-card,
  .pm-card,
  .fbtn,
  .nav-cta,
  .btn {
    cursor: none;
  }
  #cur,
  #ring {
    display: block;
  }
}
@media (pointer: coarse) {
  #cur,
  #ring {
    display: none;
  }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 9px 20px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--burg);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav {
    height: 60px;
  }
  .nav-logo-img {
    height: 30px;
  }
}

/* ── HERO ── */
.hero {
  margin-top: 64px;
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
  min-height: calc(100svh - 64px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.d-lg {
  display: block;
}

.d-md {
  display: none;
}

.d-sm {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 9996;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  width: 52%;
  min-width: 320px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 7px 14px;
  margin-bottom: 2rem;
  width: fit-content;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(29, 158, 117, 0);
  }
}
.hero h1 {
  font-family: var(--D);
  font-size: clamp(3.25rem, 8.2vw, 9rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.058em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero h1 span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.11em;
  margin-bottom: -0.11em;
}
.hero h1 span em {
  display: block;
  transform: translateY(105%);
  animation: sup 0.9s var(--ease) forwards;
  font-style: normal;
}
.hero h1 span:nth-child(1) em {
  animation-delay: 0.05s;
}
.hero h1 span:nth-child(2) em {
  animation-delay: 0.15s;
}
.hero h1 span:nth-child(3) em {
  animation-delay: 0.25s;
}
.hero h1 span:nth-child(4) em {
  animation-delay: 0.35s;
}
@keyframes sup {
  to {
    transform: translateY(0);
  }
}
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 2.5rem;
  animation: fu 0.8s 0.75s both;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fu 0.8s 0.9s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 15px 26px;
  width: fit-content;
  transition:
    gap 0.3s,
    background 0.2s;
}
.btn:hover {
  gap: 22px;
  background: var(--burg);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--off);
  gap: 22px;
}
.hero-fine {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
}
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
 
  .d-lg {
    display: none;
  }

  .d-md {
    display: block;
  }

  .d-sm {
    display: none;
  }

  .hero-bg-wrap {
    position: relative;
    inset: unset;
    height: 55vw;
    min-height: 220px;
    max-height: 400px;
    width: 100%;
    flex-shrink: 0;
    background-color: #fff;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    border: none;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;
  }

  .hero-content {
    position: relative;
    width: 100%;
    background: var(--white);
    backdrop-filter: none;
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .d-lg {
    display: none;
  }

  .d-md {
    display: none;
  }

  .d-sm {
    display: block;
  }

  .hero-bg-wrap {
    height: 64vw;
  }
}

@media (max-width: 360px) {
}
/* ── VIDEO OVERLAY inside phone screen ── */


.hero-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* ── MARQUEE ── */
.mq {
  border-bottom: 1px solid var(--ink);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  background: var(--ink);
}
.mq-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  white-space: nowrap;
  flex-shrink: 0;
}
.mq-scroll {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.mq-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: mqs 20s linear infinite;
}
@keyframes mqs {
  to {
    transform: translateX(-50%);
  }
}
.mq-item {
  font-family: var(--D);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mq-sep {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── SHARED ── */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}
.pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.ey {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ey::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ghost);
}
.ey-inv {
  color: rgba(255, 255, 255, 0.65);
}
.ey-inv::before {
  background: rgba(255, 255, 255, 0.65);
}
.ey-dark {
  color: var(--ink);
}
.ey-dark::before {
  background: var(--ink);
}
.H {
  font-family: var(--D);
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.052em;
  color: var(--ink);
}
.H-inv {
  color: var(--white);
}

/* ── PROMISE (become) ── */
.promise-bg {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.promise-l {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem)
    0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-r {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 6rem)
    clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Headline */
.promise-title {
  font-family: var(--D);
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.052em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.promise-body {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Tags — large typographic, well readable */
.tags-block {
  margin-bottom: 2rem;
}
.tags-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tags-title::before {
  content: "";
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
.tag-line {
  font-family: var(--D);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  color: var(--white);
  padding: 0.62rem 0 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  line-height: 0.98;
}
.tag-line:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* Earn cells */
.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.earn-cell {
  background: var(--ink);
  padding: 1.65rem 1.75rem;
}
.earn-cell-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
}
.earn-cell-value {
  font-family: var(--D);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

@media (max-width: 900px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .promise-l {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 3rem;
  }
  .promise-r {
    padding-left: 0;
    padding-top: 3rem;
  }
}

.daylife-sec {
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.daylife-intro {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 3vw, 2.5rem)
    clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink);
}
.daylife-inner {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 0;
  position: relative;
}
/* LEFT — sticky image */
.daylife-visual {
  position: sticky;
  top: 58px;
  height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
  border-right: 1px solid var(--ink);
}
.daylife-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.daylife-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.daylife-img.active {
  opacity: 1;
}
.daylife-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.dl-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.35s;
}
.dl-dot.active {
  width: 20px;
  background: var(--white);
}
/* RIGHT — scrolling steps */
.daylife-steps {
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 3vw, 2.5rem)
    clamp(4rem, 8vw, 7rem);
}
.daylife-step {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.daylife-step-inner {
  max-width: 480px;
  opacity: 0.2;
  transform: translateY(30px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.daylife-step.active .daylife-step-inner {
  opacity: 1;
  transform: translateY(0);
}
.ds-num {
  font-family: var(--D);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--line);
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.daylife-step.active .ds-num {
  color: var(--ink);
}
.ds-title {
  font-family: var(--D);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 740;
  line-height: 0.98;

  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.ds-body {
  font-size: 17px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.7;
  max-width: 380px;
}
.ds-mobile-img {
  display: none;
}
@media (max-width: 900px) {
  .daylife-inner {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }
  .daylife-visual {
    position: relative;
    top: 0;
    height: 70vw;
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--ink);
  }
  .daylife-step {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* Portrait phone layout only:
   01 headline → matching picture → text.
   Landscape/laptop keeps the original sticky image carousel. */
@media (orientation: portrait) and (max-width: 900px) {
  .daylife-inner {
    display: block;
  }
  .daylife-visual {
    display: none;
  }
  .daylife-steps {
    padding: 0;
  }
  .daylife-step {
    min-height: auto;
    display: block;
    padding: clamp(3rem, 12vw, 4.5rem) clamp(1.25rem, 5vw, 1.75rem);
    border-bottom: 1px solid var(--ink);
  }
  .daylife-step:last-child {
    border-bottom: none;
  }
  .daylife-step-inner {
    max-width: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .ds-num {
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .ds-title {
    margin-bottom: 1.25rem;
  }
  .ds-mobile-img {
    display: block;
    width: 100%;
    /* height: 52vw; */
    min-height: 200px;
    /* max-height: 320px; */
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    margin-top: 0.5rem;
  }
  .ds-body {
    max-width: none;
  }
}

/* Small landscape/narrow desktop: keep desktop-style image carousel, never inline step images. */
@media (orientation: landscape) and (max-width: 900px) {
  .ds-mobile-img {
    display: none !important;
  }
}

/* ── STATS ── */
.stats-bg {
  background: var(--off);
  border-bottom: 1px solid var(--ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.stat-cell {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-right: 1px solid var(--ink);
}
.stat-cell:last-child {
  border-right: none;
}
.stat-big {
  font-family: var(--D);
  font-size: clamp(5rem, 11vw, 13rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: var(--ink);
  display: block;
  margin-bottom: 0.75rem;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 2.5rem;
  display: block;
}
.stat-cta-body {
  font-size: 20px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 2rem;
}
.stat-fine {
  font-size: 13px;
  font-weight: 400;
  color: var(--ghost);
  line-height: 1.6;
  margin-top: 1rem;
}
@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--ink);
  }
  .stat-cell:last-child {
    border-bottom: none;
  }
}

/* ── BUYER ── */
.buyer-bg {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.buyer-l {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem)
    0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.buyer-r {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 6rem)
    clamp(2rem, 4vw, 4rem);
  display: flex;
  justify-content: center;
}
.buyer-h {
  font-family: var(--D);
  font-size: clamp(3rem, 6.2vw, 7rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.052em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.buyer-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 3rem;
}
.bstep {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bstep:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bnum {
  font-family: var(--D);
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.2;
}
.btxt {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  padding-top: 3px;
}
.btxt strong {
  color: var(--white);
  font-weight: 600;
}

/* Single phone slider — proper proportions */
.phone-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.phone-frame {
  width: 300px;
  height: 648px;
  background: #ffffff;
  border-radius: 50px;
  border: 10px solid #111;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}
.phone-notch {
  display: none;
}
.phone-slides {
  display: flex;
  width: 200%;
  transition: transform 0.7s var(--ease);
}
.phone-slide {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 628px;
}

/* Screen 1 — code entry */
.s1 {
  padding: 56px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 628px;
}
.s1-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3c3489, #5e56b3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(60, 52, 137, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}
.s1-init {
  font-family: var(--D);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.s1-name {
  font-family: var(--D);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0d0d0d;
  margin-bottom: 3px;
}
.s1-bio {
  font-size: 10px;
  color: #888;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}
.s1-div {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}
.s1-prompt {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.45;
}
.s1-codes {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.s1-digit {
  width: 40px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--D);
  font-size: 22px;
  font-weight: 900;
  color: #0d0d0d;
}
.s1-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  margin-bottom: 12px;
}
.s1-key {
  background: #fff;
  border-radius: 9px;
  padding: 9px 4px;
  text-align: center;
  border: 0.5px solid rgba(0, 0, 0, 0.07);
}
.s1-key-e {
  background: transparent;
  border: none;
}
.s1-kn {
  font-size: 16px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1;
}
.s1-ks {
  font-size: 7px;
  color: #aaa;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.s1-ok {
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 9px;
  border: none;
}

/* Screen 2 — basket */
.s2 {
  display: flex;
  flex-direction: column;
  height: 628px;
  position: relative;
  overflow: hidden;
}
.s2-header {
  padding: 16px 18px 12px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
}
.s2-title {
  font-family: var(--D);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0d0d0d;
  margin-bottom: 2px;
}
.s2-shop {
  font-size: 11px;
  color: #888;
}
.s2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
}
.s2-swatch {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
}
.s2-name {
  font-size: 13px;
  font-weight: 600;
  color: #0d0d0d;
}
.s2-price {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}
.s2-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  margin-top: auto;
}
.s2-tlabel {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.s2-tamt {
  font-family: var(--D);
  font-size: 20px;
  font-weight: 900;
  color: #0d0d0d;
}
.s2-pay {
  margin: 0 18px 18px;
  background: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 9px;
  border: none;
  width: calc(100% - 36px);
}
.s1-digit span {
  opacity: 0;
  transform: translateY(7px) scale(0.92);
  display: block;
}
.phone-frame.phone-play .digit-1 {
  animation: digitIn 0.28s 0.35s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-frame.phone-play .digit-2 {
  animation: digitIn 0.28s 0.78s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-frame.phone-play .digit-3 {
  animation: digitIn 0.28s 1.21s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-frame.phone-play .s1-ok {
  animation: buttonPress 0.48s 1.78s ease;
}
.phone-frame.phone-pay .s2-pay {
  animation: buttonPress 0.5s ease forwards;
}
.s2-success {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s var(--ease);
}
.phone-frame.phone-success .s2-success {
  opacity: 1;
  transform: translateY(0);
}
.s2-check {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}
.s2-success-title {
  font-family: var(--D);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.03em;
  color: #0d0d0d;
  margin-bottom: 6px;
}
.s2-success-copy {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  max-width: 190px;
}
@keyframes digitIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes buttonPress {
  0%,
  100% {
    transform: scale(1);
    filter: none;
  }
  45% {
    transform: scale(0.965);
    filter: brightness(0.85);
  }
}

/* Slide dots */
.slide-dots {
  display: flex;
  gap: 7px;
}
.sdot {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.35s;
  width: 4px;
}
.sdot.active {
  width: 20px;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .buyer-grid {
    grid-template-columns: 1fr;
  }
  .buyer-l {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
  }
  .buyer-r {
    padding-left: 0;
  }
}

/* ── T-SHIRT SECTION ── */
.tshirt-sec {
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.tshirt-header {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 3vw, 2.5rem)
    clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink);
}
.tshirt-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.tshirt-card {
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  cursor: none;
}
.tshirt-card:last-child {
  border-right: none;
}
.tshirt-img-wrap {
  flex: 1;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.tshirt-img-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.tshirt-card:hover .tshirt-img-wrap img {
  transform: scale(1.05);
}
.tshirt-text {
  position: relative;
  background: var(--ink);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  min-height: clamp(120px, 14vw, 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.tshirt-card:not(:last-child) .tshirt-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
}
.tshirt-text-desc {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .tshirt-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .tshirt-card {
    border-bottom: 1px solid var(--ink);
  }
}

/* ── POLYMAILER FLIP GRID ── */
.pmgrid-sec {
  background: var(--off);
  border-bottom: 1px solid var(--ink);
}
.pmgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pm-card {
  border-right: 1px solid var(--ink);
  perspective: 1200px;
  cursor: none;
  aspect-ratio: 2/3;
  position: relative;
}
.pm-card:last-child {
  border-right: none;
}
.pm-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.pm-card:hover .pm-inner {
  transform: rotateY(180deg);
}
.pm-front,
.pm-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.pm-front img,
.pm-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pm-back {
  transform: rotateY(180deg);
  background: var(--ink);
}
.pm-back img {
  opacity: 0.25;
  filter: brightness(0.4);
}
.pm-back-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  gap: 0.75rem;
}
.pm-back-no {
  font-family: var(--D);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  display: block;
}
.pm-back-title {
  font-family: var(--D);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 720;
  line-height: 0.95;
  color: var(--white);
}
.pm-back-desc {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .pmgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pm-card {
    border-bottom: 1px solid var(--ink);
  }
}

/* ── SHOWROOM ── */
.sh-bg {
  background: var(--off);
  border-bottom: 1px solid var(--ink);
}
.sh-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
}
.sh-hl-cell {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem)
    0;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sh-sub-cell {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem)
    clamp(2rem, 4vw, 4rem);
  display: flex;
  align-items: center;
}
.sh-sub {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--body);
  line-height: 1.45;
  max-width: 400px;
}
.sh-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  height: 620px;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.sh-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: colu 28s linear infinite;
}
.sh-col.dn {
  animation: coldn 33s linear infinite;
}
.sh-col.sl {
  animation-duration: 38s;
}
.sh-col.dn.sl {
  animation-duration: 43s;
}
@keyframes colu {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes coldn {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.sh-ph {
  width: 100%;
  aspect-ratio: 2/3;
  flex-shrink: 0;
  overflow: hidden;
}
.sh-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sh-nm {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem;
}
.sh-nmt {
  font-family: var(--D);
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  font-weight: 760;
  letter-spacing: -0.025em;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
}
.sh-mobile-cols {
  display: none;
}
@media (max-width: 900px) {
  .sh-header {
    grid-template-columns: 1fr;
  }
  .sh-hl-cell {
    border-right: none;
    border-bottom: 1px solid var(--ink);
    padding-right: 0;
  }
  .sh-sub-cell {
    padding-left: 0;
    padding-top: 2rem;
  }
  .sh-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (orientation: portrait) and (max-width: 1024px) {
  .sh-header {
    display: block !important;
    border-bottom: 0;
  }
  .sh-hl-cell {
    border-right: none;
    border-bottom: 0;
    padding: clamp(3rem, 12vw, 5rem) 0 1rem !important;
  }
  .sh-sub-cell {
    padding: 1.35rem 0 2.5rem !important;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .sh-cols {
    display: none !important;
  }
  .sh-mobile-cols {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding-bottom: 0.75rem;
    width: 100%;
  }
  .sh-mobile-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
  }
  .sh-mobile-col:nth-child(2) {
    padding-top: 2rem;
  }
  .sh-mobile-cols .sh-ph {
    display: block !important;
    border-radius: 0;
    box-shadow: none;
    min-height: 210px;
    background: var(--ink);
  }
  .sh-mobile-cols .sh-ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
@media (orientation: portrait) and (max-width: 520px) {
  .sh-mobile-cols {
    gap: 0.55rem;
    margin-top: 1.15rem;
  }
  .sh-mobile-col {
    gap: 0.55rem;
  }
  .sh-mobile-col:nth-child(2) {
    padding-top: 1.6rem;
  }
  .sh-mobile-cols .sh-ph {
    min-height: 190px;
  }
}

/* ── FAQ ── */
.faq-bg {
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.faq-h {
  font-family: var(--D);
  font-size: clamp(3.5rem, 5.8vw, 6.8rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.052em;
  margin-bottom: 1.25rem;
}
.faq-tag {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.5;
}
.fitem {
  border-bottom: 1px solid var(--ink);
}
.fitem:first-child {
  border-top: 1px solid var(--ink);
}
.fbtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 2rem;
  background: none;
  border: none;
  cursor: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.fbtn:hover {
  color: var(--ghost);
}
.fico {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.fico::before,
.fico::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.fico::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fico::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}
.fitem.open .fico {
  transform: rotate(45deg);
}
.fans {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.fans-in {
  padding: 0 0 1.6rem;
  font-size: 16px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.8;
  max-width: 600px;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FINAL CTA ── */
.fin {
  background: var(--ink);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.fin-l {
  padding-right: clamp(2rem, 5vw, 5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.fin-r {
  padding-left: clamp(2rem, 5vw, 5rem);
}
.fin-ey {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fin-ey::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
.fin-h {
  font-family: var(--D);
  font-size: clamp(3.6rem, 9.6vw, 10.5rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--white);
}
.fin-h em {
  color: rgba(255, 255, 255, 0.22);
  display: block;
  font-style: normal;
}
.fin-body {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.fin-fine {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-top: 1.25rem;
}
.fin-bgn {
  position: absolute;
  bottom: -6vw;
  right: -2vw;
  font-family: var(--D);
  font-size: clamp(14rem, 36vw, 44rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}
@media (max-width: 900px) {
  .fin-inner {
    grid-template-columns: 1fr;
  }
  .fin-l {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 3rem;
  }
  .fin-r {
    padding-left: 0;
    padding-top: 3rem;
  }
}

/* ── FOOTER ── */
.foot {
  background: var(--off);
  border-top: 1px solid var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--ink);
}
.foot-logo {
  font-family: var(--D);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.foot-tag {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  max-width: 220px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.foot-addr {
  font-size: 14px;
  font-weight: 400;
  color: var(--ghost);
  line-height: 1.9;
}
.foot-addr a:hover {
  color: var(--ink);
}
.fcol-t {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 1.25rem;
}
.fcol a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.fcol a:hover {
  color: var(--ink);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.foot-leg {
  font-size: 12px;
  font-weight: 400;
  color: var(--ghost);
}
@media (max-width: 720px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}
.rv2 {
  transition-delay: 0.12s;
}
.rv3 {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
