*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5EC;
  --cream-dark: #EDE9DC;
  --black: #0E0D0B;
  --grey: #7A7870;
  --grey-light: #C8C5BC;
  --amber: #C8965A;
  --white: #FFFFFF;
  --font-serif: 'Inter', Arial, sans-serif;
  --font-sans: 'Inter', Arial, sans-serif;
  --ease-carousel: cubic-bezier(0.625, 0.05, 0, 1);
  --ease-hover: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 500;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--grey-light); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── CONTAINERS ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 4rem; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 3.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled {
  background: rgba(248, 245, 236, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.nav-links a:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
}
.btn-nav {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  padding: 1.1rem 2.6rem;
  border-radius: 10rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-nav:hover { opacity: 0.75; }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
  max-width: none;
}

/* ── Real watch image component ── */
.watch-real {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.watch-real-img {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
  /* ↓ Move watch photo right/left — eyes stay fixed, only the image shifts */
  transform: translateX(2%);
}
/* Screen overlay — positioned over the real watch screen area */
.watch-real-face {
  position: absolute;
  /* approximate screen bounds within watch_front.png */
  left: 12%; top: 10%; right: 12%; bottom: 9%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22%;
  overflow: hidden;
  background: #050508;
  /* Eyes float, watch stays still */
  animation: eye-float 5s ease-in-out infinite;
}
@keyframes eye-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
/* Agent section card wrapper */
.watch-real-card {
  background: #1e1e28;
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-watch-float {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.fabric-strip {
  width: 260px;
  height: 30px;
  background: linear-gradient(180deg, #2d2d3a 0%, #22222c 100%);
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.fabric-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(255,255,255,0.03) 7px, rgba(255,255,255,0.03) 8px);
}
.fabric-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Apple Watch */
.watch-device {
  width: 170px;
  height: 204px;
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1d 100%);
  border-radius: 46px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 80px rgba(0,0,0,0.28),
    0 12px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch-device::before {
  content: '';
  position: absolute;
  top: 0; left: 28%; right: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.watch-crown {
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 34px;
  background: linear-gradient(90deg, #333338, #404046);
  border-radius: 0 4px 4px 0;
}
.watch-screen {
  width: 132px;
  height: 158px;
  background: #050508;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(14,14,26,1) 0%, #050508 100%);
}
.screen-dot {
  position: absolute;
  top: 12px; right: 12px;
  width: 5px; height: 5px;
  background: #3DFFD0;
  border-radius: 50%;
  box-shadow: 0 0 6px #3DFFD0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.screen-time {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* Pixel agent inside watch */
.pixel-wrap {
  position: relative;
  z-index: 2;
}
.eye-l, .eye-r, .eye-l-cute, .eye-r-cute,
.eye-l-big, .eye-r-big, .eye-l-big-cute, .eye-r-big-cute {
  transform-box: fill-box;
  transform-origin: center;
}
.eye-star-l, .eye-star-r {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

/* Pin magnetic clip */
.claw-body {
  width: 90px;
  height: 22px;
  background: linear-gradient(180deg, #333338 0%, #222226 100%);
  border-radius: 0 0 14px 14px;
  margin-top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.claw-magnet {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,150,90,0.7), transparent);
  border-radius: 2px;
}

/* Hero text overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 6rem 4rem;
  text-align: left;
  z-index: 3;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 0;
  margin-top: 0;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 3.2rem;
}
.hero-headline em {
  font-style: normal;
  font-weight: 300;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3.2rem;
  margin-top: -1.6rem;
  letter-spacing: 0.01em;
}

.hero-cta {
  pointer-events: all;
  position: absolute;
  left: 50%;
  bottom: 7rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(248,245,236,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14,13,11,0.1);
  color: var(--black);
  padding: 1.2rem 2.6rem;
  border-radius: 10rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-cta:hover { background: rgba(248,245,236,0.92); transform: scale(1.02); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(14,13,11,0.4), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── INTRO TEXT STRIP ─── */
.intro-strip {
  padding: 8rem 0;
  border-bottom: 1px solid rgba(14,13,11,0.06);
}
.intro-strip .container-sm {
  text-align: center;
}
.intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 2.4rem;
}
.intro-headline em { font-style: normal; font-weight: 300; }
.intro-sub {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── CAROUSEL ─── */
.carousel-section { padding: 16rem 0 14rem; }
.carousel-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 5.6rem;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(500px, 75vh, 840px);
  user-select: none;
}

.hp-carousel-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  max-width: 540px;
  height: calc(100% - 80px);
  border-radius: 2.8rem;
  overflow: hidden;
  transform: translateX(-50%) translateY(-50%) scale(0.8);
  filter: blur(22px);
  opacity: 0;
  z-index: 1;
  transition:
    transform 0.6s cubic-bezier(0.625, 0.05, 0, 1),
    filter  0.6s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.4s ease;
  will-change: transform, filter;
  cursor: pointer;
}
.hp-carousel-slide.is-center {
  filter: blur(0px);
  opacity: 1;
  z-index: 5;
  cursor: default;
}
.hp-carousel-slide.is-adj {
  opacity: 1;
  z-index: 4;
  filter: blur(22px);
}

.slide-inner {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slide-tag {
  position: absolute;
  top: 2.8rem; left: 2.8rem;
  background: rgba(14,13,11,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.7rem 1.6rem;
  border-radius: 10rem;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
  z-index: 2;
}
.slide-caption {
  position: absolute;
  bottom: 3.6rem; left: 3.6rem; right: 3.6rem;
  z-index: 2;
}
.slide-caption h3 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.slide-caption p { font-size: 1.35rem; font-weight: 500; color: var(--grey); }

.slide-watch {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide-watch-body {
  width: 120px; height: 144px;
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1d 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.06);
}
.slide-watch-screen {
  width: 94px; height: 112px;
  background: #050508;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide-clip {
  width: 64px; height: 15px;
  background: linear-gradient(180deg, #333 0%, #222 100%);
  border-radius: 0 0 10px 10px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 4.8rem;
}
.carousel-btn {
  width: 4.8rem; height: 4.8rem;
  border-radius: 50%;
  border: 1px solid rgba(14,13,11,0.13);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(14,13,11,0.05); border-color: rgba(14,13,11,0.28); transform: scale(1.06); }
.carousel-dots { display: flex; gap: 0.8rem; }
.carousel-dot {
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--grey-light);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dot.active { background: var(--black); transform: scale(1.5); }

/* ─── SPLIT SECTION ─── */
.split-section {
  padding: 18rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-media {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border-radius: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-media-label {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.2);
  white-space: nowrap;
}

.split-text {}
.split-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}
.split-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2.4rem;
}
.split-title em { font-style: normal; font-weight: 300; }
.split-body {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 3.6rem;
}
.btn-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--black);
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.btn-text:hover { gap: 1.4rem; opacity: 0.65; }

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3.6rem;
  border-top: 1px solid rgba(14,13,11,0.08);
}
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(14,13,11,0.08);
  font-size: 1.4rem;
}
.spec-row-key { color: var(--grey); font-weight: 500; }
.spec-row-val { font-weight: 600; }

/* ─── AGENT CUSTOMIZER ─── */
.agent-section {
  padding: 18rem 0;
  background: var(--black);
  color: var(--cream);
}
.agent-section .split-label { color: rgba(248,245,236,0.4); }
.agent-section .split-title { color: var(--cream); }
.agent-section .split-body { color: rgba(248,245,236,0.5); }
.agent-section .btn-text { color: var(--cream); border-bottom-color: var(--cream); }

.agent-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.outfit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(248,245,236,0.08);
}
.outfit-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(248,245,236,0.08);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.outfit-row:hover { opacity: 0.7; }
.outfit-row.active { opacity: 1; }
.outfit-row.active .outfit-num { color: var(--cream); }
.outfit-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: rgba(248,245,236,0.25);
  width: 2.4rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.outfit-mini {
  width: 3.6rem; height: 3.6rem;
  background: rgba(248,245,236,0.06);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.outfit-text-name {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.outfit-text-desc {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(248,245,236,0.4);
}
.outfit-arrow {
  margin-left: auto;
  color: rgba(248,245,236,0.2);
  font-size: 1.4rem;
  transition: transform 0.25s ease, color 0.2s ease;
}
.outfit-row.active .outfit-arrow { transform: translateX(4px); color: var(--cream); }

.agent-watch-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}
.agent-watch-big {
  width: 220px;
  height: 264px;
  background: linear-gradient(160deg, #2e2e34 0%, #1c1c20 100%);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
}
.agent-watch-big::before {
  content: '';
  position: absolute;
  top: 0; left: 28%; right: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.agent-screen-big {
  width: 172px;
  height: 206px;
  background: #03030a;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.agent-screen-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(12,12,28,1) 0%, #03030a 100%);
}
.agent-pixel-display {
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.agent-pixel-display.switching {
  opacity: 0;
  transform: scale(0.88);
}
.agent-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(248,245,236,0.06);
  border: 1px solid rgba(248,245,236,0.1);
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(248,245,236,0.5);
  letter-spacing: 0.04em;
}
.status-dot {
  width: 0.6rem; height: 0.6rem;
  background: #3DFFD0;
  border-radius: 50%;
  box-shadow: 0 0 6px #3DFFD0;
  animation: pulse-green 1.8s ease-in-out infinite;
}

/* ─── SLOGAN SECTION ─── */
.slogan-section {
  padding: 28rem 0 22rem;
  text-align: center;
}
.slogan-text {
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(14,13,11,0.8);
}

/* ─── VIDEO SECTION ─── */
.video-section {
  padding: 18rem 0;
}
.video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  border-radius: 2.4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-wrap::before {
  content: 'VIDEO PLACEHOLDER — How Pin Works';
  position: absolute;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.18);
  bottom: 3rem;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8E3D5 0%, #CECAB8 100%);
}
.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-circle {
  position: relative;
  z-index: 2;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: rgba(248,245,236,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(14,13,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-wrap:hover .play-circle { transform: scale(1.06); background: rgba(248,245,236,0.85); }
.play-triangle {
  width: 0; height: 0;
  border-top: 1.2rem solid transparent;
  border-bottom: 1.2rem solid transparent;
  border-left: 2rem solid var(--black);
  margin-left: 0.4rem;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 18rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
}
.how-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 7rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(14,13,11,0.08);
  border-radius: 2.4rem;
  overflow: hidden;
}
.how-step {
  padding: 4.8rem 4rem;
  position: relative;
  border-right: 1px solid rgba(14,13,11,0.08);
}
.how-step:last-child { border-right: none; }
.step-number {
  font-family: var(--font-serif);
  font-size: 5.6rem;
  font-weight: 400;
  color: rgba(14,13,11,0.07);
  line-height: 1;
  margin-bottom: 2rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.step-body {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.7;
}
.step-ph-img {
  width: 100%;
  height: 14rem;
  background: var(--cream-dark);
  border-radius: 1.2rem;
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.18);
}

/* ─── PROACTIVE AGENT ─── */
.proactive-section {
  padding: 18rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
  background: var(--cream-dark);
}
.proactive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.chat-feed {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 380px;
}
.chat-msg {
  padding: 1.4rem 1.8rem;
  border-radius: 1.8rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg.visible { opacity: 1; transform: translateY(0); }
.chat-msg.from-agent {
  background: var(--white);
  border: 1px solid rgba(14,13,11,0.08);
  align-self: flex-start;
  border-radius: 0.4rem 1.8rem 1.8rem 1.8rem;
  color: var(--black);
}
.chat-msg.from-user {
  background: var(--black);
  color: var(--cream);
  align-self: flex-end;
  border-radius: 1.8rem 0.4rem 1.8rem 1.8rem;
}
.chat-sender {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.4rem;
}
.chat-sender.user-sender { text-align: right; }

/* ─── COMMUNITY ─── */
.community-img {
  width: 25%;
  height: auto;
  display: block;
  border-radius: 2.4rem;
  margin: 0 auto;
}

.community-section {
  padding: 18rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
}
.community-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5.6rem;
}
.community-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.comm-card {
  border-radius: 2rem;
  overflow: hidden;
  background: var(--cream-dark);
  transition: transform 0.35s var(--ease-hover);
}
.comm-card:hover { transform: translateY(-4px) scale(1.01); }
.comm-img {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-img-ph {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.18);
}
.comm-info {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.comm-avatar {
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  background: var(--grey-light);
  flex-shrink: 0;
}
.comm-name { font-size: 1.3rem; font-weight: 400; }
.comm-sub { font-size: 1.1rem; font-weight: 300; color: var(--grey); }

/* ─── PRICING ─── */
.pricing-section {
  padding: 10rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
}
.pricing-head { text-align: center; margin-bottom: 6.4rem; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--cream-dark);
  border-radius: 2.4rem;
  padding: 4rem 3.2rem;
  border: 1px solid rgba(14,13,11,0.06);
  position: relative;
  transition: transform 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.price-card.featured .price-period,
.price-card.featured .feat-item { color: rgba(248,245,236,0.5); }
.featured-badge {
  position: absolute;
  top: -1.2rem; left: 50%; transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.4rem 1.4rem;
  border-radius: 10rem;
  white-space: nowrap;
}
.price-tier-name {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2.4rem;
}
.price-card.featured .price-tier-name { color: rgba(248,245,236,0.45); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.price-period {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 3.2rem;
}
.price-divider {
  height: 1px;
  background: rgba(14,13,11,0.08);
  margin-bottom: 2.4rem;
}
.price-card.featured .price-divider { background: rgba(248,245,236,0.08); }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3.2rem; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--grey);
}
.feat-check {
  font-size: 1rem;
  color: var(--amber);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.price-card.featured .feat-check { color: var(--amber); }
.btn-price-primary {
  width: 100%;
  padding: 1.5rem;
  border-radius: 10rem;
  border: 1.5px solid rgba(14,13,11,0.18);
  background: transparent;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-sans);
}
.btn-price-primary:hover { background: rgba(14,13,11,0.05); border-color: rgba(14,13,11,0.3); }
.price-card.featured .btn-price-primary {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}
.price-card.featured .btn-price-primary:hover { opacity: 0.88; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  padding: 18rem 0;
  border-top: 1px solid rgba(14,13,11,0.06);
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.newsletter-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 3.6rem;
}
.newsletter-form {
  display: inline-flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(14,13,11,0.12);
  border-radius: 10rem;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  width: 100%;
  max-width: 480px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--black);
  font-family: var(--font-sans);
}
.newsletter-input::placeholder { color: var(--grey-light); }
.btn-subscribe {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 1.1rem 2.4rem;
  border-radius: 10rem;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.btn-subscribe:hover { opacity: 0.82; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(14,13,11,0.08);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 6rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--black);
}
.footer-brand p {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 2.8rem;
}
.footer-socials {
  display: flex;
  gap: 1.2rem;
}
.social-link {
  width: 3.4rem; height: 3.4rem;
  border: 1px solid rgba(14,13,11,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--grey);
  font-size: 1.2rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-link:hover { border-color: rgba(14,13,11,0.3); color: var(--black); }
.footer-col h5 {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.footer-col ul a {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(14,13,11,0.06);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.02em;
}

/* ─── OPENCLAW SECTION ─── */
.oc-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(248,245,236,0.06);
  border: 1px solid rgba(248,245,236,0.1);
  padding: 0.8rem 1.4rem;
  border-radius: 10rem;
}
.oc-logo-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.oc-gh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248,245,236,0.1);
  color: rgba(248,245,236,0.6);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 10rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.oc-gh-badge:hover { background: rgba(248,245,236,0.18); color: var(--cream); }

.oc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 3.2rem 0;
}
.oc-feat {
  background: rgba(248,245,236,0.04);
  border: 1px solid rgba(248,245,236,0.08);
  border-radius: 1.4rem;
  padding: 2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.oc-feat:hover { background: rgba(248,245,236,0.07); border-color: rgba(248,245,236,0.14); }
.oc-feat-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.oc-feat-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.oc-feat-desc {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(248,245,236,0.45);
  line-height: 1.55;
}

.oc-activity-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.oc-line {
  position: absolute;
  left: 12%;
  height: 2px;
  width: var(--w, 40px);
  background: linear-gradient(90deg, rgba(245,192,112,0.6), transparent);
  border-radius: 2px;
  animation: oc-pulse var(--d, 0s) 2.2s ease-in-out infinite alternate;
}
@keyframes oc-pulse {
  0% { opacity: 0.15; transform: scaleX(0.6); }
  100% { opacity: 0.6; transform: scaleX(1); }
}

.oc-conn-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(248,245,236,0.05);
  border: 1px solid rgba(248,245,236,0.1);
  padding: 1rem 1.6rem;
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(248,245,236,0.5);
}
.oc-conn-left { display: flex; align-items: center; gap: 0.6rem; }
.oc-brand {
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.oc-stars {
  font-size: 1.05rem;
  color: #F5C070;
  letter-spacing: 0.04em;
}

.oc-stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(61,255,208,0.06);
  border: 1px solid rgba(61,255,208,0.14);
  padding: 0.7rem 1.4rem;
  border-radius: 10rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(61,255,208,0.7);
  letter-spacing: 0.03em;
  min-width: 200px;
}
.oc-stream-dot {
  width: 0.55rem; height: 0.55rem;
  background: #3DFFD0;
  border-radius: 50%;
  box-shadow: 0 0 5px #3DFFD0;
  flex-shrink: 0;
  animation: pulse-green 1.4s ease-in-out infinite;
}

/* ─── EYE TRANSFORMS (animation driven by JS) ─── */

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .split-grid { grid-template-columns: 1fr; gap: 4rem; }
  .split-grid.reverse { direction: ltr; }
  .agent-grid-layout { grid-template-columns: 1fr; }
  .proactive-inner { grid-template-columns: 1fr; }
  .community-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  footer { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .how-steps { grid-template-columns: 1fr; border-radius: 2rem; }
  .how-step { border-right: none; border-bottom: 1px solid rgba(14,13,11,0.08); }
  .how-step:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
  html { font-size: 50%; }
  nav { padding: 0 2.4rem; }
  .nav-links { display: none; }
  .container { padding: 0 2.4rem; }
  .container-sm { padding: 0 2.4rem; }
  .hero-video {
    width: auto;
    height: 100%;
    min-width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    object-position: center center;
  }
  .hp-carousel-slide { width: 78%; max-width: none; }
  footer { grid-template-columns: 1fr; padding: 4rem 2.4rem; gap: 3.2rem; }
  .footer-bottom { padding: 1.6rem 2.4rem; flex-direction: column; gap: 0.8rem; text-align: center; }
  .community-cards { grid-template-columns: repeat(2, 1fr); }
  .how-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .community-head { flex-direction: column; align-items: flex-start; gap: 2rem; }
}
