/* ============================================================
   SHOPIFY eCOMMERCE — Case Study
   Base tokens and shared components match the portfolio system.
   Page-specific rules prefixed  se-
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Backgrounds — warm near-black, no blue tint */
  --bg:          #0d0c0b;
  --surface:     #131210;
  --surface-2:   #1a1815;
  --surface-3:   #201d19;

  --border:      rgba(255,255,255,.07);
  --border-hi:   rgba(255,255,255,.13);

  /* Text — warm off-white */
  --text:        #f4efe9;
  --muted:       #8a7f71;
  --dim:         rgba(244,239,233,.28);

  /* Warm sand / muted gold — editorial, fashion-focused */
  --accent:      #c2aa88;
  --accent-2:    #ddd0b8;
  --accent-glow: rgba(194,170,136,.18);
  --accent-dim:  rgba(194,170,136,.08);

  --r:           12px;
  --r-lg:        20px;
  --r-xl:        24px;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --f-head:      'Inter', system-ui, -apple-system, sans-serif;
  --f-body:      'Inter', system-ui, -apple-system, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--text); font-family: var(--f-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; cursor: none; }
img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul, ol   { list-style: none; }
button   { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }

/* ── CURSOR ──────────────────────────────────────────────────── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease);
  mix-blend-mode: exclusion; will-change: transform;
}
.cursor-follower {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .2s;
  will-change: transform;
}
body.c-hover .cursor          { width: 0; height: 0; }
body.c-hover .cursor-follower { width: 64px; height: 64px; border-color: var(--accent); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 48px;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto;
  height: var(--nav-h); padding: 0 48px;
  display: flex; align-items: center;
  z-index: 900;
  transition: background .4s, backdrop-filter .4s, transform .45s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,13,22,.94);
  backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-color: rgba(255,255,255,.07);
}
.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--f-head); font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link  { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: .01em; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--text); }

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border-hi);
  padding: 8px 22px; border-radius: 100px;
  transition: border-color .2s, color .2s, background .2s !important;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent) !important; background: var(--accent-dim); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-link {
  font-family: var(--f-head); font-size: clamp(36px, 8vw, 60px);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--dim); display: block; padding: 8px;
  transition: color .2s;
}
.mobile-link:hover { color: var(--text); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px; border-radius: 100px;
  font-size: 15px; font-weight: 500; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn-primary {
  background: #f7f5f2;
  color: #0d0c0b; font-weight: 600;
}
.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-ghost   { border: 1px solid rgba(255,255,255,.11); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.btn-full    { width: 100%; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── SECTION BASE ────────────────────────────────────────────── */
.se-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.se-section--surface {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(194,170,136,.04) 0%, transparent 65%),
    var(--surface);
}

/* ── SHARED SECTION TYPOGRAPHY ───────────────────────────────── */
.se-section-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.se-section-title {
  font-family: var(--f-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.se-body {
  font-size: 16px; color: var(--muted);
  line-height: 1.82; margin-bottom: 18px;
}
.se-body:last-child { margin-bottom: 0; }
.se-body--wide { max-width: 580px; }

/* ── CONTACT + FOOTER ────────────────────────────────────────── */
.contact {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(194,170,136,.05) 0%, transparent 65%),
    var(--surface);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 140px 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-title { font-family: var(--f-head); font-size: clamp(28px, 3.4vw, 46px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-top: 24px; margin-bottom: 18px; }
.contact-sub   { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.socials       { display: flex; flex-direction: column; gap: 12px; }
.social-link   { font-size: 15px; color: var(--muted); display: inline-block; transition: color .2s; }
.social-link:hover { color: var(--accent); }
.section-num   { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.se-cta-right  { display: flex; flex-direction: column; gap: 14px; justify-content: center; }

.footer       { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner p  { font-size: 14px; color: var(--muted); }
.footer-top { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-top:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.se-hero {
  min-height: max(90vh, 640px);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--bg);
}

.se-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.se-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.4;
}
.se-glow--1 {
  width: 680px; height: 480px;
  background: radial-gradient(ellipse, rgba(194,170,136,.20) 0%, transparent 70%);
  top: -60px; left: -100px;
}
.se-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(194,170,136,.10) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}

.se-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

.se-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative; z-index: 1;
}

.se-hero-content { max-width: 560px; }

.se-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 7px 16px 7px 12px; border-radius: 100px;
  margin-bottom: 28px; opacity: 0;
}
.se-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: se-blink 2.6s ease-in-out infinite;
}
@keyframes se-blink { 0%,100% { opacity:1; } 50% { opacity:.2; } }

.se-title {
  font-family: var(--f-head);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
  margin-bottom: 20px;
}
.se-tl { display: block; opacity: 0; }
.se-tl--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.se-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.55);
  line-height: 1.65; margin-bottom: 16px;
  opacity: 0;
}
.se-intro {
  font-size: 14px; color: rgba(255,255,255,.38);
  line-height: 1.8; margin-bottom: 28px;
  opacity: 0; max-width: 480px;
}

.se-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px; opacity: 0;
}
.se-tags span {
  font-size: 12px; font-weight: 500;
  padding: 5px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 100px; color: var(--muted);
}

.se-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }

.se-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; animation: se-fadeUp 1s 2.4s forwards; z-index: 1;
}
.se-scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: se-pulse 2.4s ease-in-out infinite;
}
@keyframes se-fadeUp { to { opacity: 1; } }
@keyframes se-pulse  { 0%,100% { opacity: .4; } 50% { opacity: .9; } }

/* Hero flow pipeline */
.se-hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  opacity: 0;
}
.se-flow-pipeline {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 320px;
}
.se-fp-node {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 16px 24px;
  width: 100%;
  transition: border-color .3s;
}
.se-fp-node:hover { border-color: rgba(194,170,136,.22); }
.se-fp-node--start { border-color: rgba(194,170,136,.16); }
.se-fp-node--end {
  border-color: rgba(194,170,136,.28);
  background: rgba(194,170,136,.08);
}
.se-fp-num {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--accent); min-width: 20px;
}
.se-fp-label {
  font-size: 14px; font-weight: 600;
  color: var(--text); letter-spacing: -.01em;
}
.se-fp-connector {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 6px 0;
}
.se-fp-line {
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, rgba(194,170,136,.28), rgba(194,170,136,.10));
}
.se-fp-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: 0.6;
  animation: se-pulse-dot 2.4s ease-in-out infinite;
}
@keyframes se-pulse-dot { 0%,100% { opacity:.3; transform:scale(1); } 50% { opacity:.9; transform:scale(1.3); } }

.se-flow-caption {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.2); text-align: center;
}

/* ============================================================
   OVERVIEW — snapshot card
   ============================================================ */
.se-snapshot {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.se-snapshot-meta {
  border-right: 1px solid var(--border);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 32px;
  background: var(--surface-2);
}
.se-meta-item { display: flex; flex-direction: column; gap: 6px; }
.se-meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.se-meta-value { font-size: 14px; font-weight: 500; color: var(--text); }
.se-meta-live {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent-2);
}
.se-meta-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: se-blink 2s ease-in-out infinite;
}
.se-snapshot-body { padding: 48px 56px; }

/* ============================================================
   PROBLEM — head + 2x2 issue grid
   ============================================================ */
.se-problem-head { margin-bottom: 56px; }

.se-issue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.se-issue-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .3s;
}
.se-issue-item:hover { border-color: rgba(194,170,136,.16); }
.se-issue-num {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  color: var(--accent); padding-top: 3px; flex-shrink: 0;
}
.se-issue-body h3 {
  font-size: 14px; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
  margin-bottom: 8px; line-height: 1.35;
}
.se-issue-body p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

/* ============================================================
   MY ROLE — 2-col: copy + 2x2 role grid
   ============================================================ */
.se-role {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.se-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.se-role-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: border-color .3s;
}
.se-role-item:hover { border-color: rgba(194,170,136,.14); }
.se-role-item-label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.se-role-item p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

/* ============================================================
   KEY IMPROVEMENTS — head + 2x2 card grid
   ============================================================ */
.se-impr-head { margin-bottom: 48px; }

.se-impr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.se-impr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color .3s, background .3s;
}
.se-impr-card:hover {
  border-color: rgba(194,170,136,.16);
  background: rgba(194,170,136,.04);
}
.se-impr-num {
  font-size: 9px; font-weight: 800; letter-spacing: .14em;
  color: var(--accent); opacity: 0.7;
  margin-bottom: 16px;
}
.se-impr-card h3 {
  font-size: 15px; font-weight: 700;
  color: var(--text); letter-spacing: -.02em;
  margin-bottom: 10px;
}
.se-impr-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ============================================================
   VISUAL SECTIONS — alternating screen rows
   ============================================================ */

/* ============================================================
   OUTCOME — copy + accent list
   ============================================================ */
.se-outcome {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.se-outcome-list {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 8px;
}
.se-outcome-item {
  font-size: 16px; color: var(--text);
  padding: 16px 20px;
  border-left: 2px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 0 var(--r) var(--r) 0;
  line-height: 1.55;
}

/* ============================================================
   REFLECTION — centered italic paragraph
   ============================================================ */
.se-section--reflect {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(194,170,136,.05) 0%, transparent 70%),
    var(--surface);
}
.se-reflection {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.se-reflection p {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  font-style: italic;
  letter-spacing: -.015em;
}

/* ============================================================
   EXPERIENCE OVERVIEW — 4-screen preview grid
   ============================================================ */
.se-section--preview {
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.se-preview-head {
  text-align: center;
  margin-bottom: 52px;
}
.se-preview-head .se-section-title { margin-bottom: 0; }

.se-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.se-core-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.se-core-frame {
  aspect-ratio: 4 / 3;
}

.se-core-caption {
  padding: 0 2px;
}

.se-core-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.se-core-title {
  font-family: var(--f-head);
  font-size: 15px; font-weight: 600;
  letter-spacing: -.01em; line-height: 1.35;
  color: var(--text);
  margin: 0 0 8px;
}

.se-core-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.se-preview-frame {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(194,170,136,.06) 0%, transparent 65%),
    var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.04) inset;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.se-preview-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.38), 0 0 0 1px rgba(194,170,136,.12);
  border-color: rgba(194,170,136,.16);
}
/* Actual screenshot images */
.se-pv-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .7s var(--ease);
}
.se-preview-frame:hover .se-pv-img { transform: scale(1.04); }

/* Detail card only: shift down past nav to centre on product grid */
.se-pv-img--detail { object-position: 50% 20%; }

/* Bottom gradient overlay for depth */
.se-preview-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(12, 13, 22, .32) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Number badge — above overlay */
.se-pv-num {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.42);
  padding: 4px 8px; border-radius: 6px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}


/* ============================================================
   MOBILE APP EXPERIENCE
   ============================================================ */
.se-app-head {
  margin-bottom: 56px;
}

/* Wide lifestyle banner */
.se-app-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 56px;
}
.se-app-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.se-app-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(13,12,11,.55) 0%, transparent 40%),
    linear-gradient(to bottom, transparent 50%, rgba(13,12,11,.35) 100%);
  pointer-events: none;
}

/* 3-column screens row */
.se-app-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
  /* Constrain width so portrait frames don't sprawl */
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.se-app-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.se-app-screen-frame {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  /* Subtle layered shadow — depth without heaviness */
  box-shadow:
    0 2px 6px  rgba(0,0,0,.22),
    0 10px 32px rgba(0,0,0,.36),
    0 24px 64px rgba(0,0,0,.28);
  background: var(--surface-2);
}
.se-app-screen-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.se-app-screen-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Supporting bullets */
.se-app-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.se-app-bullets li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 0;
  position: relative;
}
.se-app-bullets li::before {
  content: '—\00a0';
  color: var(--accent);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .se-hero-inner { gap: 52px; }
  .se-snapshot   { grid-template-columns: 220px 1fr; }
  .se-role       { gap: 52px; }
  .se-outcome    { gap: 52px; }
}

@media (max-width: 860px) {
  .container  { padding: 0 28px; }
  .se-section { padding: 60px 0; }
  .contact    { padding: 88px 0; }

  .se-hero-inner  { grid-template-columns: 1fr; gap: 56px; }
  .se-hero-content { max-width: 100%; }

  .se-snapshot    { grid-template-columns: 1fr; }
  .se-snapshot-meta {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 32px;
    flex-direction: row; flex-wrap: wrap; gap: 24px;
  }
  .se-snapshot-body { padding: 36px 32px; }

  .se-core-grid  { grid-template-columns: 1fr; gap: 40px; }
  .se-app-banner  { aspect-ratio: 16 / 9; }
  .se-app-screens { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 100%; }

  .se-issue-grid   { grid-template-columns: 1fr; }
  .se-role       { grid-template-columns: 1fr; }
  .se-role-grid  { grid-template-columns: 1fr; }
  .se-impr-grid  { grid-template-columns: 1fr; }
  .se-outcome    { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .se-hero-inner { padding-top: 20px; }
  .se-app-screens { grid-template-columns: 1fr; max-width: 280px; }
  .se-snapshot-meta { flex-direction: column; }
}
