/* =========================
   Vault by TEM site styles
   ========================= */

:root {
  --bg: #f5f5f7;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: rgba(255,255,255,0.94);
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(210,210,215,0.82);
  --blue: #0071e3;
  --blue-hover: #005ec3;
  --green: #34c759;
  --orange: #ff9f0a;
  --red: #ff453a;
  --purple: #7c4dff;
  --shadow: 0 22px 70px rgba(0,0,0,0.08);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 50% -10%, rgba(0,113,227,0.09), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(124,77,255,0.06), transparent 22%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin-top: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.45rem); }
h3 { font-size: 1.35rem; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, 100%); margin: 0 auto; }
.center-text { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(210,210,215,0.68);
  background: rgba(245,245,247,0.78);
  backdrop-filter: saturate(180%) blur(24px);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .24s ease;
}
.brand-lockup:hover { transform: translateY(-1px); }
.site-icon, .brand-image {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.brand-stack { display: grid; gap: 1px; line-height: 1; }
.brand { font-size: 1.05rem; font-weight: 740; letter-spacing: -0.02em; }
.brand-subtitle { color: var(--muted); font-size: .72rem; font-weight: 650; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: .95rem;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  opacity: 0;
  transform: translateX(-50%);
  transition: width .24s ease, opacity .24s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 18px; opacity: .86; }

/* Shared layout */
.hero { padding: 96px 0 56px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(360px,.98fr); gap: 42px; align-items: center; }
.home-hero { position: relative; overflow: hidden; }
.home-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7%;
  width: min(720px,72vw);
  height: min(720px,72vw);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 32%, rgba(0,113,227,.13), transparent 30%),
    radial-gradient(circle at 70% 72%, rgba(124,77,255,.09), transparent 32%),
    radial-gradient(circle at 44% 78%, rgba(52,199,89,.07), transparent 30%);
  filter: blur(20px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  animation: heroGlow 12s ease-in-out infinite;
}
.section { padding: 92px 0; }
.section-soft { padding-top: 28px; }
.section-heading { margin-bottom: 34px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lead, .section-intro { color: var(--muted); }
.lead { margin: 18px 0 0; max-width: 64ch; font-size: 1.12rem; }
.section-intro { max-width: 62ch; font-size: 1.06rem; }
.center-text .lead, .center-text .section-intro { margin-left: auto; margin-right: auto; }

/* Buttons */
.hero-actions, .app-hero-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--blue); box-shadow: 0 14px 34px rgba(0,113,227,.18); }
.button.primary:hover { background: var(--blue-hover); }
.button.secondary { color: var(--text); background: rgba(0,0,0,.04); border: 1px solid rgba(210,210,215,.72); }
.button.secondary:hover { background: rgba(0,0,0,.07); box-shadow: var(--shadow-soft); }

/* Cards and grids */
.panel, .card, .price-card, .legal-card, .support-card, .cta-block,
.mv-feature-card, .mv-story-card, .mv-health-card, .mv-flow-card, .mv-callout, .mv-mini-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.panel { border-radius: var(--radius-xl); }
.card, .price-card, .legal-card, .support-card, .cta-block,
.mv-feature-card, .mv-story-card, .mv-health-card, .mv-flow-card, .mv-callout, .mv-mini-card { border-radius: var(--radius-lg); }
.card, .price-card, .support-card, .mv-feature-card, .mv-story-card, .mv-health-card, .mv-flow-card, .mv-mini-card { padding: 28px; }
.legal-card, .cta-block, .mv-callout { padding: 34px; }
.card p, .price-card p, .support-card p, .legal-card p, .legal-card li,
.mv-feature-card p, .mv-story-card p, .mv-health-card p, .mv-flow-card p, .mv-mini-card p, .mv-callout p { color: var(--muted); }
.grid-2, .grid-3, .pricing-grid, .app-grid, .support-grid,
.mv-feature-grid, .mv-story-grid, .mv-health-grid, .mv-mini-grid, .mv-flow-grid { display: grid; gap: 22px; }
.grid-2, .pricing-grid, .support-grid, .mv-story-grid, .mv-health-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3, .app-grid, .mv-feature-grid, .mv-mini-grid, .mv-flow-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.support-card h3, .card h3 { margin-bottom: 10px; }
.meta, .stat-pill, .mv-metric-pill, .trade-proof-pill, .taskscope-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  color: var(--muted);
  font-size: .9rem;
}
.stat-row, .mv-metric-row, .trade-proof-row, .taskscope-proof-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.stat-pill, .mv-metric-pill { color: var(--text); }
.price { margin: 12px 0 6px; font-size: 3rem; line-height: 1; font-weight: 740; letter-spacing: -.06em; }
.price-list, .legal-list { margin: 18px 0 0; padding-left: 18px; }
.price-list li, .legal-list li { margin-bottom: 10px; }

/* Brand/product visual */
.hero-visual { position: relative; overflow: hidden; padding: 18px; }
.product-visual { min-height: 480px; display: grid; place-items: center; isolation: isolate; }
.product-visual::before, .product-visual::after { content: none; }
.product-visual-glow {
  position: absolute;
  inset: 10% 5% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,113,227,.14), transparent 62%);
  filter: blur(18px);
  z-index: -1;
  animation: floatGlow 8s ease-in-out infinite;
}
.product-visual-inner { width: min(390px, 100%); display: grid; justify-items: center; gap: 18px; }
.product-icon-stage {
  width: clamp(150px, 34vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(210,210,215,.7);
  box-shadow: 0 24px 70px rgba(0,0,0,.09);
}
.product-icon-stage img { width: 72%; height: 72%; border-radius: 24%; object-fit: cover; }
.product-visual-card {
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(210,210,215,.72);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.product-visual-card strong { display: block; margin-top: 8px; font-size: 1.2rem; letter-spacing: -.035em; }
.product-visual-card p { margin: 8px 0 0; color: var(--muted); }
.mini-label { color: var(--muted); font-size: .78rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.product-chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 420px; }
.product-chip-row span { min-height: 32px; padding: 0 11px; display: inline-flex; align-items: center; border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid rgba(210,210,215,.65); color: var(--muted); font-size: .82rem; }
.product-visual[data-product*="trade"] .product-visual-glow { background: radial-gradient(circle, rgba(52,199,89,.18), transparent 62%); }
.product-visual[data-product*="momentum"] .product-visual-glow { background: radial-gradient(circle, rgba(255,159,10,.16), transparent 62%); }
.product-visual[data-product*="screenshot"] .product-visual-glow { background: radial-gradient(circle, rgba(124,77,255,.16), transparent 62%); }

/* Home */
.hero-app-strip { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.hero-app-strip img { width: 42px; height: 42px; border-radius: 13px; object-fit: cover; box-shadow: 0 12px 24px rgba(0,0,0,.1); animation: iconFloat 5.4s ease-in-out infinite; }
.hero-app-strip img:nth-child(2) { animation-delay: .2s; }
.hero-app-strip img:nth-child(3) { animation-delay: .4s; }
.hero-app-strip img:nth-child(4) { animation-delay: .6s; }
.hero-app-strip img:nth-child(5) { animation-delay: .8s; }
.app-card { position: relative; overflow: hidden; text-align: left; transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease; }
.app-card::before { content: ""; position: absolute; inset: -1px; opacity: 0; background: radial-gradient(circle at 22% 18%, var(--card-glow, rgba(0,113,227,.12)), transparent 32%); transition: opacity .26s ease; pointer-events: none; }
.app-card > * { position: relative; z-index: 1; }
.app-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.105); border-color: rgba(190,190,198,.95); }
.app-card:hover::before { opacity: 1; }
.app-card[data-app="trade"] { --card-glow: rgba(52,199,89,.14); }
.app-card[data-app="study"] { --card-glow: rgba(0,113,227,.15); }
.app-card[data-app="momentum"] { --card-glow: rgba(255,159,10,.13); }
.app-card[data-app="taskscope"] { --card-glow: rgba(0,113,227,.13); }
.app-card[data-app="screenshot"] { --card-glow: rgba(124,77,255,.13); }
.app-card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 20px; }
.title-with-icon, .hero-app-heading { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.title-with-icon { display: flex; }
.title-with-icon h3, .hero-app-heading .eyebrow { margin: 0; }
.app-icon { width: 56px; height: 56px; border-radius: 16px; object-fit: cover; flex-shrink: 0; box-shadow: 0 14px 28px rgba(0,0,0,.1); }
.hero-app-icon { width: 54px; height: 54px; border-radius: 16px; }

/* Momentum */
.mv-hero-copy h1 { max-width: 8ch; }
.mv-hero-copy .lead { max-width: 58ch; }
.mv-feature-card, .mv-story-card, .mv-health-card, .mv-flow-card, .mv-mini-card,
.study-ai-feature-card, .study-ai-benefit-card, .trade-feature-card, .taskscope-feature-card { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.mv-feature-card:hover, .mv-story-card:hover, .mv-health-card:hover, .mv-flow-card:hover, .mv-mini-card:hover,
.study-ai-feature-card:hover, .study-ai-benefit-card:hover, .trade-feature-card:hover, .taskscope-feature-card:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(0,0,0,.1); border-color: rgba(190,190,198,.92); }
.mv-feature-icon, .mv-story-icon, .mv-health-icon, .mv-flow-icon, .mv-mini-icon,
.study-ai-feature-icon, .trade-feature-icon, .taskscope-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(0,113,227,.08);
  color: var(--blue);
}
.trade-feature-icon { background: rgba(52,199,89,.1); color: var(--green); }
.mv-check-list, .trade-list, .taskscope-list { display: grid; gap: 14px; margin-top: 26px; }
.mv-check-item, .trade-list-item, .taskscope-list-item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.mv-check-mark, .trade-check, .taskscope-check-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 999px; background: rgba(0,113,227,.1); color: var(--blue); font-weight: 800; font-size: .85rem; }
.trade-check { background: rgba(52,199,89,.12); color: var(--green); }
.mv-callout, .trade-callout, .taskscope-callout { position: relative; overflow: hidden; text-align: left; }
.mv-callout::before, .trade-callout::after, .taskscope-callout::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 999px; right: -70px; top: -70px; background: rgba(0,113,227,.08); filter: blur(18px); }
.trade-callout::after { background: rgba(52,199,89,.1); }
.mv-callout > *, .trade-callout > *, .taskscope-callout > * { position: relative; z-index: 1; }
.mv-legal-note { padding: 18px 20px; border-radius: 20px; background: rgba(0,0,0,.03); border: 1px solid rgba(210,210,215,.65); margin-top: 18px; }

/* Study Vault AI */
.study-ai-page .study-ai-hero { padding-top: 92px; }
.study-ai-page .study-ai-copy h1 { max-width: 7.2ch; font-size: clamp(3.2rem, 6.4vw, 5.8rem); line-height: .94; letter-spacing: -.065em; text-wrap: balance; }
.study-ai-page .study-ai-copy .lead { max-width: 58ch; }
.study-ai-mini-proof { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.study-ai-mini-proof-card, .study-ai-flow-step, .trade-analytics-row, .taskscope-analytics-row { border: 1px solid rgba(210,210,215,.76); background: rgba(255,255,255,.76); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.study-ai-mini-proof-card { padding: 16px 18px; border-radius: 20px; }
.study-ai-mini-proof-card strong { display: block; margin-bottom: 8px; }
.study-ai-mini-proof-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.study-ai-section { padding-top: 88px; }
.study-ai-flow-wrap { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,255,255,.72); border: 1px solid rgba(210,210,215,.82); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.study-ai-flow-copy { margin-bottom: 22px; }
.study-ai-flow-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.study-ai-flow-step { padding: 22px; border-radius: 24px; }
.study-ai-step-number { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; margin-bottom: 16px; background: rgba(0,113,227,.1); color: var(--blue); font-size: .86rem; font-weight: 700; }
.study-ai-flow-step p { margin: 0; color: var(--muted); }
.study-ai-cta { text-align: center; }

/* Trade + Taskscope */
.trade-page, .taskscope-page { overflow-x: hidden; }
.trade-page .hero, .taskscope-page .hero { padding: 96px 0 58px; }
.trade-hero-grid, .taskscope-hero-grid { grid-template-columns: .96fr 1.04fr; gap: 44px; }
.trade-copy h1, .taskscope-copy h1 { max-width: 9ch; font-size: clamp(3.25rem, 6.8vw, 6.1rem); line-height: .94; letter-spacing: -.07em; }
.trade-copy .lead, .taskscope-copy .lead { max-width: 60ch; font-size: 1.14rem; }
.trade-proof-pill, .taskscope-proof-pill { gap: 8px; color: var(--text); background: rgba(255,255,255,.72); border: 1px solid rgba(210,210,215,.8); box-shadow: var(--shadow-soft); }
.trade-proof-pill .dot, .taskscope-proof-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); }
.taskscope-proof-pill .dot.blue { background: var(--blue); }
.taskscope-proof-pill .dot.orange { background: var(--orange); }
.taskscope-proof-pill .dot.green { background: var(--green); }
.trade-section-split, .taskscope-section-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: center; }
.trade-callout, .taskscope-callout { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,255,255,.78); border: 1px solid rgba(210,210,215,.82); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.trade-mini-analytics, .taskscope-mini-analytics { display: grid; gap: 14px; }
.trade-analytics-row, .taskscope-analytics-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 16px; border-radius: 20px; transition: transform .22s ease; }
.trade-analytics-row:hover, .taskscope-analytics-row:hover { transform: translateX(4px); }
.trade-analytics-row p, .taskscope-analytics-row p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.trade-green { color: var(--green); }
.trade-red { color: var(--red); }
.trade-price-note, .taskscope-price-note { color: var(--muted); font-size: .95rem; }
.taskscope-list-item span, .trade-list-item span { color: var(--muted); font-size: .95rem; }

/* Legal/support/footer */
.legal-wrap, .support-wrap { padding: 88px 0 56px; }
.legal-card h2 { margin: 26px 0 10px; font-size: 1.3rem; }
.legal-card h2:first-child { margin-top: 0; }
.support-email { color: var(--blue); font-weight: 650; }
.footer { padding: 34px 0 44px; border-top: 1px solid rgba(210,210,215,.8); background: radial-gradient(circle at 18% 0%, rgba(0,113,227,.04), transparent 30%); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.footer-brand { margin-bottom: 10px; font-weight: 700; }
.footer p, .footer a { color: var(--muted); }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .94rem; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(210,210,215,.7); }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.float-gentle { animation: iconFloat 5.4s ease-in-out infinite; }
.pulse-soft { animation: pulseSoft 3.2s ease-in-out infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes iconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pulseSoft { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.018); opacity: .94; } }
@keyframes heroGlow { 0%,100% { transform: translateX(-50%) translateY(0) scale(1); opacity: .9; } 50% { transform: translateX(-50%) translateY(18px) scale(1.035); opacity: .72; } }
@keyframes floatGlow { 0%,100% { transform: translate3d(0,0,0) scale(1); opacity: .85; } 50% { transform: translate3d(-18px,18px,0) scale(1.08); opacity: .62; } }

/* Responsive */
@media (max-width: 1120px) {
  .hero-grid, .trade-hero-grid, .taskscope-hero-grid, .grid-2, .grid-3, .app-grid, .pricing-grid, .support-grid, .footer-grid,
  .mv-feature-grid, .mv-story-grid, .mv-health-grid, .mv-mini-grid, .mv-flow-grid, .trade-section-split, .taskscope-section-split { grid-template-columns: 1fr; }
  .product-visual { min-height: 420px; }
  .mv-hero-copy h1, .study-ai-page .study-ai-copy h1, .trade-copy h1, .taskscope-copy h1 { max-width: none; }
  .study-ai-flow-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 14px; }
  .brand-subtitle { font-size: .68rem; }
  .hero { padding-top: 74px; }
  .section { padding: 72px 0; }
  .button { width: 100%; }
  .hero-actions, .app-hero-links { flex-direction: column; }
  .card, .price-card, .legal-card, .support-card, .cta-block, .hero-visual,
  .mv-feature-card, .mv-story-card, .mv-health-card, .mv-flow-card, .mv-mini-card, .mv-callout, .trade-callout, .taskscope-callout { padding: 22px; }
  .hero-app-strip { gap: 8px; }
  .hero-app-strip img { width: 38px; height: 38px; border-radius: 12px; }
  .product-visual { min-height: auto; }
  .product-icon-stage { width: 150px; border-radius: 30px; }
  .product-chip-row { justify-content: flex-start; }
  .study-ai-mini-proof, .study-ai-flow-grid { grid-template-columns: 1fr; }
  .trade-page .hero, .taskscope-page .hero { padding-top: 72px; }
  .trade-copy h1, .taskscope-copy h1, .study-ai-page .study-ai-copy h1 { font-size: clamp(2.9rem, 13vw, 4.8rem); }
  .trade-analytics-row, .taskscope-analytics-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .app-icon { width: 48px; height: 48px; border-radius: 14px; }
  .hero-app-icon { width: 46px; height: 46px; }
  .site-icon, .brand-image { width: 30px; height: 30px; border-radius: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Taskscope polish */
.product-visual[data-product*="taskscope"] .product-visual-glow {
  background:
    radial-gradient(circle at 34% 34%, rgba(0,113,227,.16), transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(124,77,255,.12), transparent 46%);
}
.taskscope-proof-pill .dot.purple {
  background: var(--purple);
}
.taskscope-feature-icon {
  background: rgba(0,113,227,.08);
  color: var(--blue);
}
.taskscope-feature-card:nth-child(3n) .taskscope-feature-icon {
  background: rgba(124,77,255,.1);
  color: var(--purple);
}
.taskscope-feature-card:nth-child(3n + 2) .taskscope-feature-icon {
  background: rgba(255,159,10,.1);
  color: var(--orange);
}
.taskscope-callout::after {
  background:
    radial-gradient(circle, rgba(0,113,227,.08), transparent 62%),
    radial-gradient(circle at 78% 78%, rgba(124,77,255,.08), transparent 44%);
}
.taskscope-page .price-card {
  position: relative;
  overflow: hidden;
}
.taskscope-page .price-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(0,113,227,.07);
  filter: blur(12px);
  pointer-events: none;
}
.taskscope-page .price-card > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .taskscope-proof-row {
    gap: 8px;
  }
  .taskscope-proof-pill {
    width: 100%;
    justify-content: center;
  }
  .taskscope-page .stat-row .stat-pill {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Homepage trust/story sections
   ========================= */

.section-tight {
  padding: 52px 0 28px;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(210,210,215,.72);
  color: var(--muted);
  font-size: .88rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}

.studio-principles {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(210,210,215,.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.studio-principles h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.studio-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.vault-family-visual {
  min-height: 520px;
  align-content: center;
  gap: 22px;
}

.vault-orbit {
  position: relative;
  width: min(390px, 78vw);
  aspect-ratio: 1;
}

.vault-orbit-main,
.vault-orbit-icon {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.vault-orbit-main {
  width: 38%;
  height: 38%;
  left: 31%;
  top: 31%;
  border-radius: 27%;
  animation: iconFloat 5.8s ease-in-out infinite;
}

.vault-orbit-icon {
  width: 19%;
  height: 19%;
  border-radius: 24%;
  background: white;
  animation: iconFloat 6.2s ease-in-out infinite;
}

.orbit-trade { left: 8%; top: 16%; animation-delay: .1s; }
.orbit-study { right: 7%; top: 13%; animation-delay: .35s; }
.orbit-momentum { left: 5%; bottom: 18%; animation-delay: .55s; }
.orbit-taskscope { right: 10%; bottom: 16%; animation-delay: .75s; }
.orbit-screenshot { left: 40.5%; bottom: 4%; animation-delay: .95s; }

.vault-orbit::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 999px;
  border: 1px solid rgba(210,210,215,.72);
  background:
    radial-gradient(circle at 50% 50%, rgba(0,113,227,.06), transparent 38%),
    rgba(255,255,255,.32);
  box-shadow: inset 0 0 60px rgba(255,255,255,.68);
}

.vault-visual-card {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.match-grid {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(210,210,215,.72);
  box-shadow: 0 10px 28px rgba(0,0,0,.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.match-row:hover {
  transform: translateY(-3px);
  border-color: rgba(190,190,198,.95);
  box-shadow: 0 18px 42px rgba(0,0,0,.075);
}

.match-row span {
  color: var(--muted);
  text-align: left;
}

.match-row strong {
  color: var(--text);
  font-size: 1.02rem;
}

.apple-workflow-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 14%, rgba(0,113,227,.08), transparent 30%),
    rgba(255,255,255,.72);
  border: 1px solid rgba(210,210,215,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workflow-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.workflow-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(210,210,215,.72);
  color: var(--text);
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

@media (max-width: 1120px) {
  .studio-principles,
  .apple-workflow-card {
    grid-template-columns: 1fr;
  }

  .workflow-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section-tight {
    padding: 42px 0 12px;
  }

  .studio-principles,
  .apple-workflow-card {
    padding: 24px;
  }

  .hero-proof-strip span {
    width: 100%;
    justify-content: center;
  }

  .vault-family-visual {
    min-height: 420px;
  }

  .vault-orbit {
    width: min(320px, 82vw);
  }

  .match-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .workflow-pills span {
    flex: 1 1 42%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vault-orbit-main,
  .vault-orbit-icon {
    animation: none !important;
  }
}

/* Final polish overrides */
.app-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.card p,
.app-card p {
  line-height: 1.55;
}

.product-visual-card p,
.section-intro,
.lead {
  line-height: 1.58;
}


/* =====================================================
   Apple-like refresh, whitespace, calmer cards, softer motion
   ===================================================== */
:root {
  --bg: #f8f8fa;
  --surface: rgba(255,255,255,0.78);
  --surface-solid: #ffffff;
  --line: rgba(0,0,0,0.075);
  --muted: #6f6f76;
  --shadow: 0 18px 54px rgba(0,0,0,0.055);
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.045);
  --radius-xl: 40px;
  --radius-lg: 28px;
}

body {
  background:
    radial-gradient(circle at 50% -18%, rgba(0,113,227,0.075), transparent 32%),
    linear-gradient(180deg, #fbfbfd 0%, #f6f7fb 46%, #fbfbfd 100%);
}

.site-header {
  background: rgba(251,251,253,0.74);
  border-bottom-color: rgba(0,0,0,0.06);
}

.hero {
  padding: clamp(74px, 9vw, 128px) 0 clamp(44px, 5vw, 76px);
}

.section {
  padding: clamp(74px, 8vw, 118px) 0;
}

.section-soft {
  padding-top: clamp(28px, 4vw, 56px);
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.05rem, 7vw, 6.35rem);
  line-height: .94;
  letter-spacing: -0.065em;
}

.hero-copy h1,
.trade-copy h1,
.taskscope-copy h1,
.study-ai-copy h1,
.mv-hero-copy h1 {
  text-wrap: balance;
}

h2 {
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.lead {
  max-width: 58ch;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

.section-intro {
  line-height: 1.62;
}

.panel,
.card,
.price-card,
.legal-card,
.support-card,
.cta-block,
.mv-feature-card,
.mv-story-card,
.mv-health-card,
.mv-flow-card,
.mv-callout,
.mv-mini-card,
.study-ai-flow-wrap,
.trade-callout,
.taskscope-callout,
.apple-workflow-card,
.studio-principles {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,0,0,0.072);
  box-shadow: var(--shadow);
}

.card,
.price-card,
.support-card,
.mv-feature-card,
.mv-story-card,
.mv-health-card,
.mv-flow-card,
.mv-mini-card {
  padding: clamp(24px, 2.4vw, 34px);
}

.app-card {
  min-height: 100%;
}

.app-card-top {
  margin-bottom: 24px;
}

.app-card p {
  color: #5f6067;
  font-size: 1.01rem;
}

.title-with-icon {
  gap: 16px;
  margin-bottom: 14px;
}

.app-icon,
.hero-app-icon,
.site-icon,
.brand-image {
  box-shadow: 0 12px 30px rgba(0,0,0,0.095);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  transform: translateZ(0);
}

.button.primary {
  background: linear-gradient(180deg, #0a84ff 0%, #0071e3 100%);
  box-shadow: 0 16px 34px rgba(0,113,227,.18);
}

.button.primary:hover {
  background: linear-gradient(180deg, #0b7ff2 0%, #0066cc 100%);
}

.button.secondary {
  background: rgba(255,255,255,.78);
}

.meta,
.stat-pill,
.mv-metric-pill,
.trade-proof-pill,
.taskscope-proof-pill,
.hero-proof-strip span,
.product-chip-row span,
.workflow-pills span {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.065);
  box-shadow: 0 8px 20px rgba(0,0,0,.032);
}

.home-hero::before {
  opacity: .75;
}

.product-visual,
.vault-family-visual {
  min-height: clamp(420px, 48vw, 560px);
}

.vault-orbit::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,113,227,.05), transparent 36%),
    rgba(255,255,255,.42);
  border-color: rgba(0,0,0,.065);
}

.vault-orbit-icon:hover,
.hero-app-strip img:hover {
  transform: translateY(-5px) scale(1.045);
}

.studio-principles,
.apple-workflow-card {
  padding: clamp(26px, 3vw, 42px);
}

.match-grid {
  gap: 14px;
}

.match-row {
  padding: 20px 22px;
  background: rgba(255,255,255,.82);
}

.footer {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.64));
}

.footer-grid {
  padding-top: 6px;
}

/* subtle human-feeling motion */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.992);
  transition: opacity .82s cubic-bezier(.2,.8,.2,1), transform .82s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-grid .reveal:nth-child(2),
.grid-3 .reveal:nth-child(2),
.grid-2 .reveal:nth-child(2) { transition-delay: .04s; }
.app-grid .reveal:nth-child(3),
.grid-3 .reveal:nth-child(3),
.grid-2 .reveal:nth-child(3) { transition-delay: .08s; }
.app-grid .reveal:nth-child(4),
.grid-3 .reveal:nth-child(4) { transition-delay: .12s; }
.app-grid .reveal:nth-child(5),
.grid-3 .reveal:nth-child(5) { transition-delay: .16s; }
.app-grid .reveal:nth-child(6),
.grid-3 .reveal:nth-child(6) { transition-delay: .20s; }

.card,
.product-visual-card,
.match-row,
.trade-analytics-row,
.taskscope-analytics-row {
  will-change: transform;
}

.card:hover,
.product-visual-card:hover,
.match-row:hover,
.trade-analytics-row:hover,
.taskscope-analytics-row:hover {
  transform: translateY(-4px);
}

@keyframes heroGlow {
  0%,100% { transform: translateX(-50%) translateY(0) scale(1); opacity: .72; }
  50% { transform: translateX(-50%) translateY(18px) scale(1.035); opacity: .52; }
}

@keyframes floatGlow {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity: .72; }
  50% { transform: translate3d(-12px,14px,0) scale(1.06); opacity: .48; }
}

@media (max-width: 1120px) {
  h1 { max-width: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-visual { max-width: 720px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .hero { padding-top: 66px; }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.85rem, 13vw, 4.85rem); }
  .nav { gap: 14px; }
  .nav-links { gap: 15px; }
  .nav-links a::after { bottom: -6px; }
  .hero-proof-strip span { width: auto; justify-content: flex-start; }
  .app-card-top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .workflow-pills span { flex: 1 1 auto; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-up,
  .float-gentle,
  .hero-app-strip img,
  .vault-orbit-main,
  .vault-orbit-icon,
  .product-visual-glow,
  .home-hero::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* =========================
   Final brand visual refinement
   ========================= */

/* The home hero visual now focuses on the main Vault by TEM icon only. */
.vault-family-visual {
  min-height: 520px;
  align-content: center;
  gap: 18px;
}

.vault-brand-stage {
  position: relative;
  width: min(390px, 76vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.vault-brand-stage::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 999px;
  border: 1px solid rgba(210,210,215,.62);
  background: rgba(255,255,255,.30);
  box-shadow:
    inset 0 0 70px rgba(255,255,255,.72),
    0 24px 70px rgba(0,0,0,.035);
  z-index: 1;
}

.vault-brand-ring {
  position: absolute;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(210,210,215,.58);
  background: rgba(255,255,255,.18);
  z-index: 2;
}

.vault-brand-icon-wrap {
  position: relative;
  z-index: 4;
  width: clamp(126px, 28vw, 172px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 32%;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    0 28px 72px rgba(0,0,0,.10),
    0 0 0 1px rgba(210,210,215,.58);
  backdrop-filter: blur(20px);
  animation: floatIcon 6.2s ease-in-out infinite;
}

.vault-brand-icon {
  width: 76%;
  height: 76%;
  border-radius: 28%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.vault-soft-glow {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(28px);
  opacity: .72;
  z-index: 0;
  animation: driftGlow 9s ease-in-out infinite;
}

.glow-green {
  background: #DDEFD6;
  top: 17%;
  left: 15%;
}

.glow-red {
  background: #F6D9D6;
  top: 20%;
  right: 13%;
  animation-delay: .8s;
}

.glow-blue {
  background: #DCE7FF;
  bottom: 15%;
  left: 16%;
  animation-delay: 1.4s;
}

.glow-grey {
  background: #E9E9EE;
  bottom: 13%;
  right: 16%;
  animation-delay: 2.1s;
}

.vault-visual-card {
  margin-top: -52px;
}

/* Hide the old orbit icons if an older cached HTML block remains. */
.vault-orbit-icon {
  display: none;
}

/* Support page centering polish */
.support-wrap .section-heading {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.support-wrap .section-heading .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}

.support-wrap h1 {
  max-width: 9.5ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.support-grid {
  align-items: stretch;
}

.support-card {
  min-height: 100%;
}

@media (max-width: 760px) {
  .vault-brand-stage {
    width: min(315px, 82vw);
  }

  .vault-visual-card {
    margin-top: -34px;
  }

  .support-wrap h1 {
    max-width: 10.5ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vault-brand-icon-wrap,
  .vault-soft-glow {
    animation: none !important;
  }
}


/* =========================================================
   FINAL Apple-style navigation, brand hero, footer, and polish
   ========================================================= */

:root {
  --nav-h: 52px;
  --glass-bg: rgba(248, 248, 250, 0.74);
  --glass-line: rgba(255,255,255,0.72);
  --glass-stroke: rgba(210,210,215,0.62);
}

/* header: icon-only + home + collapsible menu */
.apple-glass-header {
  height: var(--nav-h);
  border-bottom: 1px solid rgba(210,210,215,0.54);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.64), rgba(245,245,247,0.52)),
    rgba(245,245,247,0.68);
  -webkit-backdrop-filter: saturate(190%) blur(28px);
  backdrop-filter: saturate(190%) blur(28px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 1px 0 rgba(255,255,255,0.42);
}

.apple-nav {
  min-height: var(--nav-h);
  height: var(--nav-h);
}

.nav-icon-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.nav-icon-link:hover {
  transform: translateY(-1px);
}

.nav-only-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.apple-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.nav-home-link {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-home-link.active,
.nav-home-link:hover {
  color: var(--text);
  background: rgba(255,255,255,.56);
}

.home-glyph {
  font-size: .95rem;
  line-height: 1;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu-button {
  width: 42px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(210,210,215,0.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 8px 24px rgba(0,0,0,.04);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.nav-menu-button:hover {
  background: rgba(255,255,255,0.82);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 12px 28px rgba(0,0,0,.07);
}

.nav-menu-button span {
  width: 16px;
  height: 1.6px;
  border-radius: 999px;
  background: var(--text);
  display: block;
}

.nav-menu[open] .nav-menu-button span:first-child {
  transform: translateY(3px) rotate(0deg);
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(560px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1.25fr .82fr 1.2fr;
  gap: 26px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,248,250,.76));
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 24px 70px rgba(0,0,0,.14);
  z-index: 100;
  animation: menuReveal .18s ease both;
}

.nav-menu-section {
  display: grid;
  gap: 9px;
  align-content: start;
}

.nav-menu-section p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu-section a {
  color: var(--text);
  font-size: .98rem;
  letter-spacing: -.015em;
  padding: 3px 0;
}

.nav-menu-section a:hover {
  color: var(--blue);
}

/* Home first impression */
.final-brand-hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: 72px 0 58px;
  overflow: hidden;
  position: relative;
}

.final-brand-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: min(900px, 80vw);
  height: min(540px, 58vw);
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 36% 28%, rgba(210,232,255,.46), transparent 34%),
    radial-gradient(circle at 65% 30%, rgba(246,217,214,.34), transparent 34%),
    radial-gradient(circle at 48% 66%, rgba(221,239,214,.34), transparent 36%);
  filter: blur(30px);
  opacity: .78;
  pointer-events: none;
}

.final-hero-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.brand-first {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.brand-aura {
  position: relative;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
}

.brand-aura::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 46px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.58));
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 24px 70px rgba(0,0,0,.10);
}

.brand-first-icon {
  position: relative;
  z-index: 3;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(0,0,0,.10);
  animation: finalFloat 6.5s ease-in-out infinite;
}

.aura-dot {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .74;
  animation: auraDrift 9s ease-in-out infinite;
}

.aura-green { background:#DDEFD6; left: 0; top: 24px; }
.aura-red { background:#F6D9D6; right: 0; top: 34px; animation-delay: 1.2s; }
.aura-blue { background:#DCE7FF; left: 18px; bottom: 8px; animation-delay: 2.1s; }
.aura-grey { background:#E9E9EE; right: 18px; bottom: 0; animation-delay: 3s; }

.brand-first-name {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-first-name strong {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  letter-spacing: -.05em;
}

.brand-first-name span {
  color: var(--muted);
  font-weight: 750;
  letter-spacing: .02em;
  margin-top: 4px;
}

.final-hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  max-width: 9.2ch;
  margin: 0 auto;
}

.final-hero-copy .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.final-hero-copy .hero-actions,
.final-hero-copy .hero-proof-strip {
  justify-content: center;
}

.hero-proof-strip span {
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.56));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 24px rgba(0,0,0,.04);
}

/* tighter, more Apple-like site spacing */
.section {
  padding: 74px 0;
}

.section-tight {
  padding: 42px 0;
}

.hero:not(.final-brand-hero) {
  padding: 82px 0 42px;
}

.section-heading {
  margin-bottom: 28px;
}

.card,
.price-card,
.support-card,
.cta-block,
.product-visual-card,
.legal-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.66));
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 20px 60px rgba(0,0,0,.07);
}

.app-card:hover,
.card:hover,
.support-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 26px 72px rgba(0,0,0,.095);
}

/* support/legal page centering fix */
.support-wrap .section-heading,
.legal-wrap .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.support-wrap .lead,
.legal-wrap .lead {
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  align-items: stretch;
}

/* Apple-like footer */
.apple-footer {
  padding: 34px 0 26px;
  border-top: 1px solid rgba(210,210,215,.82);
  background: #f5f5f7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .78rem;
  margin-bottom: 22px;
}

.footer-mini-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.apple-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 18px 0 26px;
}

.apple-footer-grid .footer-section {
  display: grid;
  gap: 8px;
}

.apple-footer-grid h4 {
  list-style: none;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.apple-footer-grid a {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
  margin: 0 0 8px;
}

.apple-footer-grid a:hover {
  color: var(--text);
}

.apple-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: var(--muted);
  font-size: .76rem;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

@keyframes menuReveal {
  from { opacity: 0; transform: translateY(-6px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes finalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes auraDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(8px,-8px,0) scale(1.06); }
}

@media (max-width: 900px) {
  .final-brand-hero {
    min-height: auto;
    padding: 58px 0 46px;
  }

  .brand-aura {
    width: 146px;
    height: 146px;
  }

  .brand-first-icon {
    width: 94px;
    height: 94px;
    border-radius: 24px;
  }

  .final-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .nav-menu-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(360px, calc(100vw - 28px));
  }

  .apple-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 16px;
  }

  .apple-footer-grid .footer-section {
    padding: 10px 0;
    border-bottom: none;
  }

  .apple-footer-grid h4 {
    margin: 0 0 8px;
  }

  .apple-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .apple-nav {
    flex-direction: row;
    align-items: center;
  }

  .hero-proof-strip {
    gap: 8px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-first-icon,
  .aura-dot {
    animation: none !important;
  }

  .nav-menu-panel {
    animation: none !important;
  }
}


/* =========================
   Final nav refinement
   Desktop: Home | Apps | Support | Legal
   Mobile: Home + compact menu with close state
   ========================= */

.apple-glass-header {
  height: var(--nav-h);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(245,245,247,0.52)),
    rgba(245,245,247,0.70);
  -webkit-backdrop-filter: saturate(190%) blur(30px);
  backdrop-filter: saturate(190%) blur(30px);
  border-bottom: 1px solid rgba(210,210,215,0.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 1px 0 rgba(255,255,255,0.44);
}

.apple-glass-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
}

.apple-nav {
  min-height: var(--nav-h);
  height: var(--nav-h);
  flex-direction: row;
  align-items: center;
}

.nav-icon-link {
  width: 34px;
  height: 34px;
}

.nav-only-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  position: relative;
  height: 100%;
}

.desktop-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}

.desktop-nav-link:hover,
.desktop-nav-link.active {
  color: var(--text);
}

.desktop-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  opacity: 0;
  transform: translateX(-50%);
  transition: width .22s ease, opacity .22s ease;
}

.desktop-nav-link.active::after,
.desktop-nav-link:hover::after,
.desktop-nav-item:hover > .desktop-nav-link::after {
  width: 18px;
  opacity: .82;
}

.desktop-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,248,250,.72));
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 24px 70px rgba(0,0,0,.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px) scale(.985);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
  z-index: 110;
}

.desktop-dropdown.compact {
  min-width: 190px;
}

.desktop-dropdown.legal {
  min-width: 260px;
}

.desktop-nav-item:hover .desktop-dropdown,
.desktop-nav-item:focus-within .desktop-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.desktop-dropdown p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-dropdown a {
  display: block;
  padding: 4px 0;
  color: var(--text);
  font-size: .95rem;
  letter-spacing: -.015em;
  transition: color .18s ease, transform .18s ease;
}

.desktop-dropdown a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

.mobile-nav-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}

.nav-home-link {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .9rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.48));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 8px 20px rgba(0,0,0,.045);
}

.nav-home-link.active,
.nav-home-link:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
}

.nav-menu {
  position: relative;
}

.nav-menu-button {
  position: relative;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.50));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 8px 20px rgba(0,0,0,.05);
  z-index: 130;
}

.nav-menu-button span {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 1.7px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform .22s ease, top .22s ease, opacity .18s ease;
}

.nav-menu-button span:first-child {
  top: 13px;
}

.nav-menu-button span:last-child {
  top: 20px;
}

.nav-menu[open] .nav-menu-button span:first-child {
  top: 16.5px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-menu[open] .nav-menu-button span:last-child {
  top: 16.5px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-menu-panel {
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(248,248,250,.78));
  border: 1px solid rgba(255,255,255,.78);
}

.nav-menu-panel-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(210,210,215,.58);
}

.nav-menu-panel-top strong {
  font-size: 1.08rem;
  letter-spacing: -.035em;
}

.nav-menu-panel-top span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
}

.nav-menu-section {
  gap: 7px;
}

.nav-menu-section p {
  margin: 0 0 4px;
}

.nav-menu-section a {
  padding: 5px 0;
  font-size: .96rem;
}

/* Final headline wording refinement */
.final-hero-copy h1 {
  max-width: 10.2ch;
}

/* Desktop keeps full nav; compact Apple-style menu only on smaller screens */
@media (min-width: 901px) {
  .mobile-nav-actions {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
  }

  .apple-nav {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .nav-home-link {
    min-height: 32px;
    padding: 0 11px;
    font-size: .88rem;
  }

  .nav-menu-button {
    width: 36px;
    height: 32px;
  }

  .nav-menu-button span:first-child {
    top: 12px;
  }

  .nav-menu-button span:last-child {
    top: 19px;
  }

  .nav-menu[open] .nav-menu-button span:first-child,
  .nav-menu[open] .nav-menu-button span:last-child {
    top: 15.5px;
  }

  .nav-menu-panel {
    width: min(340px, calc(100vw - 28px));
    padding: 16px;
    border-radius: 22px;
  }
}


/* =========================
   Final mobile menu usability + premium headline
   ========================= */

.nav-menu-panel {
  max-height: min(680px, calc(100svh - var(--nav-h) - 28px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background:
    linear-gradient(180deg, rgba(255,255,255,.985), rgba(247,247,249,.955));
  -webkit-backdrop-filter: blur(42px) saturate(190%);
  backdrop-filter: blur(42px) saturate(190%);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 24px 80px rgba(0,0,0,.16);
}

.nav-menu-panel::-webkit-scrollbar {
  width: 7px;
}

.nav-menu-panel::-webkit-scrollbar-thumb {
  background: rgba(110,110,115,.22);
  border-radius: 999px;
}

.nav-menu-panel::-webkit-scrollbar-track {
  background: transparent;
}

.nav-menu-panel::before {
  content: "";
  position: sticky;
  top: -18px;
  display: block;
  height: 1px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  pointer-events: none;
}

.nav-menu-section a {
  border-radius: 12px;
  padding: 7px 8px;
  margin-inline: -8px;
}

.nav-menu-section a:hover {
  background: rgba(0,0,0,.035);
  color: var(--text);
}

.final-hero-copy h1 {
  max-width: 11ch;
}

@media (max-width: 900px) {
  .nav-menu-panel {
    max-height: calc(100svh - var(--nav-h) - 24px);
    background:
      linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,247,249,.965));
  }
}

@media (max-width: 760px) {
  .nav-menu-panel {
    max-height: calc(100svh - var(--nav-h) - 20px);
  }
}


/* =========================
   Showcase page + App Store badges
   ========================= */

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
}

.app-store-badge-link:hover {
  transform: translateY(-1px);
  opacity: .94;
  filter: saturate(1.02);
}

.app-store-badge {
  width: 188px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.app-hero-links .app-store-badge-link {
  align-self: center;
}

.showcase-hero {
  padding: 96px 0 48px;
  text-align: center;
}

.showcase-hero-wrap {
  max-width: 920px;
}

.showcase-hero h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.showcase-hero .lead {
  max-width: 780px;
  margin: 24px auto 0;
}

.showcase-section {
  padding-top: 34px;
}

.showcase-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.showcase-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.showcase-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.showcase-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 58%);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 30px;
  -webkit-overflow-scrolling: touch;
}

.showcase-carousel::-webkit-scrollbar {
  height: 8px;
}

.showcase-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(40, 40, 45, .16);
}

.showcase-card {
  scroll-snap-align: center;
  border-radius: 42px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.64));
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 26px 80px rgba(0,0,0,.09);
  overflow: hidden;
}

.showcase-card.featured {
  grid-row: span 1;
}

.showcase-image-shell {
  border-radius: 34px;
  overflow: hidden;
  background: #f2f4fa;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.showcase-image-shell img {
  width: 100%;
  display: block;
  height: auto;
}

.showcase-card-copy {
  padding: 22px 10px 8px;
}

.showcase-card-copy span {
  display: block;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.showcase-card-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.showcase-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.45;
}

.showcase-placeholder {
  min-height: 680px;
  border-radius: 34px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 24% 12%, rgba(0,113,227,.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #eef4ff);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.showcase-placeholder span {
  color: var(--blue);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 12px;
}

.showcase-placeholder strong {
  max-width: 420px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.showcase-placeholder p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.48;
}

.study-placeholder {
  background:
    radial-gradient(circle at 18% 16%, rgba(61,123,224,.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f0f5ff);
}

.taskscope-placeholder {
  background:
    radial-gradient(circle at 18% 16%, rgba(0,113,227,.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f0f6ff);
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.showcase-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}

.showcase-dots span:first-child {
  width: 22px;
  background: rgba(0,113,227,.55);
}

@media (min-width: 901px) {
  .apple-footer-grid {
    grid-template-columns: 1.1fr .8fr .9fr 1fr .8fr;
  }
}

@media (max-width: 900px) {
  .showcase-hero {
    padding: 62px 0 26px;
  }

  .showcase-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .showcase-carousel {
    grid-auto-columns: minmax(280px, 84%);
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .showcase-placeholder {
    min-height: 520px;
  }

  .app-store-badge {
    width: 166px;
  }
}


/* Full Showcase gallery */
.showcase-app-block {
  margin-top: 42px;
  padding: 28px;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.50));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(0,0,0,.07);
  overflow: hidden;
}

.showcase-app-heading {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
  padding: 8px 6px 24px;
}

.showcase-app-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.showcase-app-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.showcase-shot-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 31%);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 24px;
  -webkit-overflow-scrolling: touch;
}

.showcase-shot-row::-webkit-scrollbar {
  height: 8px;
}

.showcase-shot-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(40, 40, 45, .16);
}

.showcase-shot-card {
  scroll-snap-align: start;
  border-radius: 34px;
  padding: 14px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  overflow: hidden;
}

.showcase-shot-image {
  border-radius: 26px;
  overflow: hidden;
  background: #f2f4fa;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

.showcase-shot-image img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-shot-copy {
  padding: 18px 8px 6px;
}

.showcase-shot-copy span {
  display: block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.showcase-shot-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

@media (max-width: 900px) {
  .showcase-app-block {
    margin-top: 26px;
    padding: 18px;
    border-radius: 34px;
  }

  .showcase-app-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 4px 2px 18px;
  }

  .showcase-shot-row {
    grid-auto-columns: minmax(250px, 82%);
    gap: 16px;
  }
}
