/* ============ POCLANE — Apple-style Light Theme ============ */
:root {
  --bg: #f5f5f7;
  --tile-bg: #fbfbfd;
  --tile-bg-2: #f5f5f7;
  --tile-blue: #cfe7f5;
  --tile-dark: #1d1d1f;
  --ink: #1d1d1f;
  --ink-dim: #424245;
  --ink-mute: #6e6e73;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.16);
  --teal: #1aa6ab;
  --teal-deep: #0a6d72;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --radius-lg: 18px;
  --f-display: 'Inter Tight','SF Pro Display',-apple-system,system-ui,sans-serif;
  --f-body: 'Inter',-apple-system,system-ui,sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(245,245,247,0.78);
  border-bottom: 1px solid var(--line);
  height: 48px; display: flex; align-items: center;
}
.nav-inner {
  max-width: 1024px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 24px;
}
.logo {
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 7px;
}
.logo-img {
  height: 28px; width: auto; display: block;
  transition: opacity .2s;
}
.logo:hover .logo-img { opacity: 0.8; }
.nav-links {
  display: flex; gap: 22px; flex: 1; justify-content: center;
  font-size: 12px; color: var(--ink); font-weight: 400;
}
.nav-links a { transition: opacity .2s; opacity: 0.85; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 12px; font-weight: 500; color: var(--ink); opacity: 0.85;
}
.nav-cta:hover { opacity: 1; }

/* ============ TILE BASE ============ */
.tile {
  background: var(--tile-bg);
  padding: 56px 24px 0;
  text-align: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.tile-eyebrow {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  color: var(--teal-deep); letter-spacing: 0.02em; margin-bottom: 4px;
}
.tile-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(40px, 5.4vw, 80px);
  letter-spacing: -0.025em; line-height: 1.05; color: var(--ink);
}
.tile-title em { font-style: italic; font-weight: 400; color: var(--teal-deep); }
.tile-sub {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink); margin-top: 6px;
  letter-spacing: -0.005em;
}

.tile-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.btn-blue {
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 400;
  transition: background .2s, transform .2s;
}
.btn-blue:hover { background: var(--blue-hover); }
.btn-outline {
  border: 1px solid var(--blue); color: var(--blue);
  padding: 8px 19px; border-radius: 999px; font-size: 14px; font-weight: 400;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ============ POCLANE LINEUP HERO (apple "iPhone — meet the lineup" style) ============ */
.poclane-lineup {
  background: var(--tile-bg);
  padding: 88px 24px 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin-top: 48px;
}
.poclane-lineup-row {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 12px; margin-top: 20px; padding-bottom: 60px;
  width: 100%; max-width: 1200px;
  flex-wrap: nowrap;
}
.poclane-lineup-machine {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.poclane-lineup-machine img {
  width: 100%; height: auto; max-height: 240px; object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(0,0,0,0.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.poclane-lineup-machine:hover img { transform: translateY(-10px) scale(1.06); }
.poclane-lineup-machine:hover .poclane-lineup-name { color: var(--teal-deep); }
.poclane-lineup-name {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: var(--ink); margin-top: 16px; letter-spacing: 0.01em;
  transition: color .3s;
}

/* ============ FEATURED TILE — like iPad air ============ */
.featured-tile {
  background: linear-gradient(180deg, #cfe7f5 0%, #e6f1f9 100%);
  padding: 80px 24px 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  margin-top: 12px;
}
.featured-tile.dark {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #f5f5f7;
}
.featured-tile.dark .tile-title,
.featured-tile.dark .tile-sub { color: #f5f5f7; }
.featured-tile.dark .tile-eyebrow { color: #4fdce1; }
.featured-tile-img {
  margin-top: 32px; max-width: 720px; width: 100%;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,0.15));
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  padding-bottom: 60px;
}
.featured-tile:hover .featured-tile-img { transform: translateY(-6px); }

/* ============ MACHINE GRID — like Mother's Day / MacBook Air ============ */
.machine-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 12px 12px 0;
  background: var(--bg);
}
.grid-tile {
  background: var(--tile-bg);
  padding: 56px 24px 0;
  text-align: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  min-height: 580px;
  border-radius: 0;
  transition: background .3s;
}
.grid-tile.dark { background: #0a0a0a; color: #f5f5f7; }
.grid-tile.dark .tile-title { color: #f5f5f7; }
.grid-tile.dark .tile-sub { color: #d2d2d7; }
.grid-tile.tinted { background: linear-gradient(180deg, #d8eef0 0%, #f0f7f8 100%); }
.grid-tile.warm { background: linear-gradient(180deg, #fdf2e0 0%, #faf6ed 100%); }
.grid-tile-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.grid-tile-sub {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-dim); margin-top: 6px;
  letter-spacing: -0.005em;
}
.grid-tile.dark .grid-tile-sub { color: #d2d2d7; }
.grid-tile-img {
  margin-top: 28px; max-width: 100%; max-height: 320px;
  width: auto; object-fit: contain;
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.18));
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  margin-bottom: auto; padding-bottom: 36px;
}
.grid-tile:hover .grid-tile-img { transform: translateY(-8px) scale(1.03); }

/* Spec drawer — overlays inside tile so layout never shifts */
.grid-tile { position: relative; }
.spec-drawer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: inherit;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  pointer-events: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.spec-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.grid-tile.dark .spec-drawer { border-top-color: rgba(255,255,255,0.18); background: #0a0a0a; }
.grid-tile.warm .spec-drawer { background: linear-gradient(180deg, #fdf2e0 0%, #faf6ed 100%); }
.grid-tile.tinted .spec-drawer { background: linear-gradient(180deg, #d8eef0 0%, #f0f7f8 100%); }
.spec-drawer-inner {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  padding: 22px 24px 28px;
  border-top: none;
  margin-top: 0;
}

/* Featured tile drawer — same overlay pattern */
.featured-tile { position: relative; }
.featured-tile .spec-drawer {
  background: linear-gradient(180deg, #cfe7f5 0%, #e6f1f9 100%);
}
.featured-tile.dark .spec-drawer { background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%); }
.spec-item { text-align: center; }
.spec-val {
  font-family: var(--f-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--ink);
}
.spec-val small {
  font-family: var(--f-display); font-size: 14px; font-weight: 700; margin-left: 3px;
}
.grid-tile.dark .spec-val { color: #f5f5f7; }
.spec-lbl {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--ink-mute);
  text-transform: uppercase; margin-top: 4px;
}
.spec-extra {
  width: 100%; text-align: center; padding-top: 10px;
  font-size: 13px; color: var(--ink-mute); font-weight: 500;
}
.grid-tile.dark .spec-extra { color: #aab4b8; }

/* ============ STORY CALLOUTS ============ */
.callouts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 12px;
}
.callout {
  background: var(--tile-bg); border-radius: 18px;
  padding: 48px 32px; text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.callout:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.callout-num {
  font-family: var(--f-display); font-size: 11px; font-weight: 800;
  color: var(--ink-mute); letter-spacing: 0.22em;
}
.callout-title {
  font-family: var(--f-display); font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.1; margin-top: 16px; color: var(--ink);
}
.callout-body {
  color: var(--ink-dim); font-size: 15px; margin-top: 10px; line-height: 1.55;
}
.callout-viz { margin: 24px auto 0; width: 120px; height: 120px; }

/* ============ SOCIAL ============ */
.social { background: var(--bg); padding: 80px 24px; text-align: center; }
.social-head { max-width: 720px; margin: 0 auto 36px; }
.social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; max-width: 1100px; margin: 0 auto;
}
.ig {
  aspect-ratio: 1; border-radius: 16px;
  background: var(--tile-bg);
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform .35s, box-shadow .35s;
}
.ig:hover { transform: scale(1.02); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.ig-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px; text-align: center;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 14px);
}
.ig-placeholder.teal {
  background-image:
    repeating-linear-gradient(45deg, rgba(10,109,114,0.18) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, rgba(10,109,114,0.10), transparent);
}
.ig-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.ig-caption {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--ink-dim);
  text-transform: uppercase; margin-top: 10px;
}
.ig-likes {
  position: absolute; top: 10px; right: 12px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700; color: var(--ink-mute);
}
.ig-handle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; font-size: 14px; color: var(--blue);
}
.ig-handle:hover { text-decoration: underline; }

/* ============ INQUIRY ============ */
.inquiry {
  background: var(--tile-bg); padding: 96px 24px;
}
.inquiry-inner { max-width: 720px; margin: 0 auto; }
.form { margin-top: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 16px;
  color: var(--ink); font-family: var(--f-body); font-size: 15px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
}
.field.full { grid-column: span 2; }
.field textarea { resize: vertical; min-height: 96px; }
.model-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500; transition: all .2s; background: #fff; color: var(--ink);
}
.chip:hover { border-color: var(--blue); }
.chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============ FOOTER ============ */
footer {
  background: #f5f5f7; padding: 32px 24px 20px;
  font-size: 12px; color: var(--ink-mute);
  border-top: 1px solid var(--line);
}
.foot-inner { max-width: 980px; margin: 0 auto; }
.foot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.foot-col h4 { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.foot-col a { display: block; padding: 4px 0; color: var(--ink-mute); }
.foot-col a:hover { text-decoration: underline; }
.foot-bottom { margin-top: 18px; display: flex; justify-content: space-between; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .machine-grid { grid-template-columns: 1fr; }
  .callouts { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .poclane-lineup-row { gap: 6px; }
}
