/* =========================================================
   Reflect AI — ai.reflectmedia.ca
   Editorial, restrained, warm. Montserrat throughout.
   ========================================================= */

:root {
  --paper: #F5F2EC;
  --paper-2: #EDE8DD;
  --rule: #E3DED3;
  --ink: #1A1816;
  --ink-soft: #4A453F;
  --ink-mute: #7A736A;
  --copper: #C96442;
  --copper-deep: #A84E30;
  --tan: #D4A373;
  --panel: #FFFFFF;

  --radius: 4px;
  --radius-lg: 8px;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --shadow-sm: 0 1px 0 rgba(26, 24, 22, 0.04), 0 2px 8px rgba(26, 24, 22, 0.04);
  --shadow-md: 0 1px 0 rgba(26, 24, 22, 0.05), 0 8px 28px rgba(26, 24, 22, 0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* ---------- Top bar ---------- */

.topbar {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand .dot {
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-1px);
}
.brand .sub {
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 13px;
}
.topmeta {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.topmeta span { display: inline-flex; align-items: center; gap: 8px; }
.topmeta .live::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.18);
}

/* ---------- Section scaffolding ---------- */

section { padding: clamp(72px, 10vw, 128px) 0; }
section + section { border-top: 1px solid var(--rule); }

.section-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: baseline;
}
.section-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--copper);
  vertical-align: middle;
  margin-right: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--copper);
}
.section-kicker {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(80px, 11vw, 160px) 0 clamp(72px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 36px;
}
.hero-eyebrow .bar {
  display: inline-block;
  width: 36px; height: 1px; background: var(--copper);
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 9.5vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin: 0 0 40px;
  color: var(--ink);
  max-width: 16ch;
}
.hero h1 .accent {
  color: var(--copper);
  font-style: italic;
  font-weight: 700;
}
.hero h1 .pct {
  position: relative;
  display: inline-block;
}
.hero h1 .pct::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 10%;
  height: 14px;
  background: var(--copper);
  opacity: 0.18;
  z-index: -1;
  border-radius: 2px;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-top: 8px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  font-weight: 400;
  margin: 0;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  font-size: 13px;
  color: var(--ink-mute);
}
.hero-meta dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-meta dd .accent { color: var(--copper); }

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s, gap 0.25s ease;
}
.hero-scroll:hover { color: var(--copper); border-color: var(--copper); gap: 18px; }
.hero-scroll .arrow {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
}
.hero-scroll .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}

/* ---------- Section: What's Connected ---------- */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.tile:hover {
  transform: translateY(-2px);
  border-color: #D6CFC1;
  box-shadow: var(--shadow-md);
}
.tile-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-2);
  border-radius: 10px;
  margin-bottom: auto;
}
.tile-logo img {
  width: 26px; height: 26px;
  object-fit: contain;
}
.tile-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin-top: 22px;
  color: var(--ink);
}
.tile-subs {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.tile.tile-wide {
  grid-column: span 2;
}
.tile-interactive { padding-bottom: 64px; }
.tile-popout {
  position: absolute;
  left: 26px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--copper);
  transition: gap 0.2s, color 0.2s;
}
.tile-popout:hover { gap: 11px; color: var(--copper-deep); }

/* ---------- WordPress sites section ---------- */
.wp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 0;
  background: var(--panel);
}
.wp-search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  color: var(--ink-mute);
}
.wp-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0;
  outline: none;
  letter-spacing: -0.005em;
}
.wp-search input::placeholder { color: var(--ink-mute); }
.wp-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  white-space: nowrap;
}
.wp-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--panel);
  overflow: hidden;
}
.wp-site {
  border-top: 1px solid var(--rule);
}
.wp-site:nth-child(-n+2) { border-top: 0; }
.wp-site:nth-child(odd) { border-right: 1px solid var(--rule); }
.wp-site a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s, color 0.15s, padding 0.2s;
}
.wp-site a:hover {
  background: var(--paper-2);
  color: var(--copper);
  padding-left: 32px;
}
.wp-url {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wp-arrow {
  font-size: 13px;
  color: var(--ink-mute);
  opacity: 0;
  transform: translate(-4px, 0);
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
}
.wp-site a:hover .wp-arrow {
  opacity: 1;
  transform: translate(0, -1px);
  color: var(--copper);
}
.wp-empty {
  padding: 40px 28px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .wp-grid { grid-template-columns: 1fr; }
  .wp-site { border-right: 0 !important; border-top: 1px solid var(--rule) !important; }
  .wp-site:first-child { border-top: 0 !important; }
  .wp-toolbar { flex-direction: column; align-items: stretch; gap: 12px; padding: 18px 22px; }
  .wp-site a { padding: 18px 22px; }
  .wp-site a:hover { padding-left: 26px; }
}

.tile-index {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 600;
}

.platform-foot {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: baseline;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.platform-foot .headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 28ch;
}
.platform-foot .headline em {
  color: var(--copper);
  font-style: normal;
}
.platform-foot .note {
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 42ch;
  line-height: 1.55;
}

/* ---------- Section: Power Workflows ---------- */

.sub-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 56px 0 32px;
}
.sub-head .marker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
}
.sub-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  margin: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.workflow {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.workflow:hover { border-color: #D6CFC1; box-shadow: var(--shadow-md); }
.workflow-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.io-block { display: grid; gap: 6px; }
.io-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
}
.io-say {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.io-say::before { content: "“"; color: var(--copper); margin-right: 1px; }
.io-say::after { content: "”"; color: var(--copper); margin-left: 1px; }
.io-get {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Team Spotlight */
.spotlight {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 85% 10%, rgba(201, 100, 66, 0.22), transparent 60%),
    radial-gradient(500px 400px at 10% 100%, rgba(212, 163, 115, 0.08), transparent 60%);
  pointer-events: none;
}
.spotlight-body {
  padding: 44px 44px 42px;
  position: relative;
  z-index: 1;
}
.spotlight-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.spotlight-tag::before {
  content: "★";
  font-size: 13px;
  color: var(--copper);
}
.spotlight h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.spotlight .built-by {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 236, 0.6);
  margin-bottom: 28px;
}
.spotlight .built-by strong {
  color: var(--tan);
  font-weight: 600;
}
.spotlight p.does {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.85);
  margin: 0 0 20px;
  max-width: 52ch;
}
.spotlight .matters {
  border-left: 2px solid var(--copper);
  padding: 6px 0 6px 16px;
  font-size: 14px;
  color: rgba(245, 242, 236, 0.9);
  line-height: 1.55;
  max-width: 50ch;
}
.spotlight .matters strong { color: var(--tan); font-weight: 600; }
.spotlight-side {
  position: relative;
  z-index: 1;
  padding: 44px 44px 42px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.spotlight-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(245, 242, 236, 0.14);
}
.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.10);
}
.stat:last-child { border-bottom: 0; }
.stat .n {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--paper);
  line-height: 1;
}
.stat .n em { color: var(--copper); font-style: normal; }
.stat .l {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
  font-weight: 600;
  text-align: right;
  max-width: 18ch;
  line-height: 1.3;
}
.submit-callout {
  background: rgba(245, 242, 236, 0.06);
  border: 1px solid rgba(245, 242, 236, 0.14);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.submit-callout p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 242, 236, 0.88);
  font-style: italic;
}
.submit-callout a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--copper);
  transition: gap 0.2s, color 0.2s;
}
.submit-callout a:hover { color: var(--copper); gap: 14px; }

/* ---------- Section: Skills Reference ---------- */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.skill {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.skill:hover { border-color: #D6CFC1; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.skill-emoji {
  font-size: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  border-radius: 8px;
}
.skill-badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
}
.skill-badge.soon { color: var(--ink-mute); }
.skill-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-weight: 500;
}
.skill-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.skill-attr {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
  display: flex;
  justify-content: space-between;
}
.skill-attr strong { color: var(--copper); font-weight: 600; }

/* ---------- Section: Tips Feed ---------- */

#tips-feed {
  display: grid;
  gap: 20px;
  max-width: 860px;
}
.tip-card {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 32px 28px;
  position: relative;
}
.tip-card::before {
  content: "";
  position: absolute;
  left: 0; top: 32px;
  width: 3px; height: 28px;
  background: var(--copper);
  border-radius: 0 2px 2px 0;
}
.tip-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.tip-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.tip-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.tip-body p { margin: 0 0 12px; }
.tip-body p:last-child { margin-bottom: 0; }
    .tip-example {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--paper-2);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  position: relative;
  white-space: pre-wrap;
}
.tip-example::before {
  content: "TRY ASKING";
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 8px;
}
.tips-empty {
  padding: 40px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 15px;
  border: 1px dashed var(--rule);
  border-radius: var(--radius-lg);
}

/* ---------- Footer ---------- */

.foot {
  border-top: 1px solid var(--rule);
  padding: 48px 0 56px;
  margin-top: 0;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.foot-inner .mark {
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.foot-inner a { text-decoration: none; color: var(--ink-mute); }
.foot-inner a:hover { color: var(--copper); }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .hero-row { grid-template-columns: 1fr; gap: 36px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .tile.tile-wide { grid-column: span 2; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-side { padding: 0 44px 42px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  section { padding: 72px 0; }
  .topmeta { display: none; }
  .hero h1 { font-size: clamp(44px, 13vw, 80px); }
  .workflow-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tile { min-height: 158px; padding: 22px 20px; }
  .spotlight-body, .spotlight-side { padding-left: 28px; padding-right: 28px; }
  .platform-foot { flex-direction: column; gap: 14px; }
}
