/* ───────── Original Milo feature cards — adapted for landing ───────── */
.feature-cards-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .feature-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-cards-grid { grid-template-columns: 1fr; } }

.fc-card {
  position: relative;
  background: var(--card);
  border-radius: 28px;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 12px 28px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 24px 50px rgba(0,0,0,0.07);
}
.fc-card h3.fc-title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--ink);
  line-height: 1.0;
  padding: 24px 22px 0;
  z-index: 3;
  position: relative;
  margin: 0;
}
.fc-card .fc-kicker {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 22px;
  margin: 20px 0 5px;
  z-index: 3;
  position: relative;
}
.fc-card .fc-visual {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin-top: 18px;
}

/* ===== Calendar ===== */
.fc-card.calendar-card .cal-mockup {
  position: absolute; left: 18px; right: -30px; top: 4px; bottom: -24px;
  background: #fff; border-radius: 18px 18px 0 0;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  padding: 16px 14px 0;
  display: flex; flex-direction: column;
  transform: rotate(-1.5deg);
}
.fc-card.calendar-card .cal-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.fc-card.calendar-card .cal-month { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.fc-card.calendar-card .cal-sub { font-size: 11px; color: var(--muted); }
.fc-card.calendar-card .week {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-bottom: 14px;
  border-bottom: 1px solid #EFEFF1; padding-bottom: 10px;
}
.fc-card.calendar-card .day {
  text-align: center;
  font-size: 9px; color: var(--muted);
  display: flex; flex-direction: column; gap: 4px;
  font-weight: 500;
}
.fc-card.calendar-card .day .num { font-size: 13px; font-weight: 600; color: var(--ink); }
.fc-card.calendar-card .day.today .num {
  background: var(--milo); color: #fff;
  width: 22px; height: 22px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.fc-card.calendar-card .events { display: flex; flex-direction: column; gap: 8px; }
.fc-card.calendar-card .ev {
  background: var(--milo-soft);
  border-left: 3px solid var(--milo);
  padding: 7px 10px;
  border-radius: 4px 8px 8px 4px;
}
.fc-card.calendar-card .ev.red { background: #FFF1F0; border-left-color: var(--red); }
.fc-card.calendar-card .ev.orange { background: #FFF6E8; border-left-color: var(--orange); }
.fc-card.calendar-card .ev-t { font-size: 11px; font-weight: 600; color: var(--ink); }
.fc-card.calendar-card .ev-s { font-size: 9px; color: var(--muted); margin-top: 2px; }

/* ===== Reminders ===== */
.fc-card.reminders-card { background: var(--card); }
.fc-card.reminders-card .rem-stack {
  position: absolute; left: 20px; right: 20px; top: 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.fc-card.reminders-card .rem {
  background: #fff; border-radius: 14px;
  padding: 13px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 11px;
}
.fc-card.reminders-card .dot {
  width: 18px; height: 18px; border-radius: 999px;
  border: 2.2px solid var(--red);
  flex-shrink: 0;
}
.fc-card.reminders-card .dot.orange { border-color: var(--orange); }
.fc-card.reminders-card .dot.blue { border-color: var(--milo); }
.fc-card.reminders-card .dot.green { border-color: var(--green); position: relative; background: var(--green); }
.fc-card.reminders-card .dot.green::after {
  content: ""; position: absolute; left: 3px; top: 1px;
  width: 4px; height: 7px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.fc-card.reminders-card .rem-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.fc-card.reminders-card .rem-title {
  font-size: 12px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fc-card.reminders-card .rem-title.done { color: var(--muted); text-decoration: line-through; }
.fc-card.reminders-card .rem-sub { font-size: 10px; color: var(--muted); }

/* ===== Repeats ===== */
.fc-card.repeat-card { background: linear-gradient(160deg, #F2F2F2 0%, #F0F7FF 100%); }
.fc-card.repeat-card .repeat-stage { position: absolute; left: 20px; right: 20px; top: 4px; bottom: 0; }
.fc-card.repeat-card .recurring-pill {
  background: var(--milo); color: #fff;
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 6px 16px rgba(26,102,255,0.3);
  margin-bottom: 12px;
}
.fc-card.repeat-card .recurring-pill svg { width: 14px; height: 14px; }
.fc-card.repeat-card .rep-list { display: flex; flex-direction: column; gap: 8px; position: relative; }
.fc-card.repeat-card .rep-list::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--milo) 0 4px, transparent 4px 8px);
  opacity: 0.4;
}
.fc-card.repeat-card .rep-day {
  background: #fff; border-radius: 12px;
  padding: 10px 12px 10px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  position: relative;
}
.fc-card.repeat-card .rep-day::before {
  content: ""; position: absolute; left: -3px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--milo); border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--milo);
  z-index: 2;
}
.fc-card.repeat-card .rep-date { font-size: 9px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.fc-card.repeat-card .rep-title { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.fc-card.repeat-card .rep-day.faded { opacity: 0.85; }
.fc-card.repeat-card .rep-day.faded::before { background: #B5C5D9; box-shadow: 0 0 0 1px #B5C5D9; }
.fc-card.repeat-card .rep-day.faded .rep-date { color: var(--milo); opacity: 0.6; }
.fc-card.repeat-card .rep-day.faded .rep-title { color: var(--ink); opacity: 0.7; }

/* ===== Sync ===== */
.fc-card.sync-card { background: linear-gradient(180deg, #F2F2F2 0%, #E4E4E9 100%); }
.fc-card.sync-card .sync-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fc-card.sync-card .orbit { position: relative; width: 78%; aspect-ratio: 1; }
.fc-card.sync-card .orbit-ring { position: absolute; inset: 14%; border-radius: 50%; border: 1.5px dashed rgba(0,0,0,0.18); }
.fc-card.sync-card .orbit-ring.outer { inset: 4%; border: 1.5px dashed rgba(0,0,0,0.10); }
.fc-card.sync-card .center-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38%; aspect-ratio: 1;
  border-radius: 26%;
  background: var(--milo);
  box-shadow: 0 18px 40px rgba(26,102,255,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.fc-card.sync-card .center-orb svg { width: 64%; height: 64%; }
.fc-card.sync-card .orb {
  position: absolute; width: 26%; aspect-ratio: 1;
  border-radius: 22%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.fc-card.sync-card .orb svg { width: 70%; height: 70%; }
.fc-card.sync-card .orb.cal { top: 4%; left: 50%; transform: translateX(-50%); }
.fc-card.sync-card .orb.rem { bottom: 8%; right: 6%; }
.fc-card.sync-card .orb.notes { bottom: 8%; left: 6%; }

/* ===== Notes ===== */
.fc-card.notes-card { background: var(--card); }
.fc-card.notes-card .note-stack { position: absolute; left: 22px; right: 22px; top: 4px; bottom: -10px; }
.fc-card.notes-card .note {
  position: absolute; background: #fff; border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06); width: 100%;
}
.fc-card.notes-card .note.back { top: 0; transform: rotate(-5deg) translateY(-4px) translateX(-12px); background: #FAFAFA; z-index: 1; }
.fc-card.notes-card .note.front { top: 18px; transform: rotate(2deg) translateX(6px); z-index: 2; }
.fc-card.notes-card .note-h { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.fc-card.notes-card .md-h { font-size: 11px; font-weight: 700; color: var(--ink); margin: 6px 0 4px; }
.fc-card.notes-card .md-h::before { content: "## "; color: var(--milo); font-weight: 700; }
.fc-card.notes-card .line { height: 5px; border-radius: 3px; background: #E8E8ED; margin-bottom: 6px; }
.fc-card.notes-card .line.short { width: 55%; }
.fc-card.notes-card .line.mid { width: 78%; }
.fc-card.notes-card .check-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.fc-card.notes-card .check {
  width: 12px; height: 12px; border-radius: 4px;
  border: 1.5px solid var(--milo); background: var(--milo);
  position: relative; flex-shrink: 0;
}
.fc-card.notes-card .check::after {
  content: ""; position: absolute; left: 3px; top: 1px;
  width: 3px; height: 6px;
  border: solid #fff; border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.fc-card.notes-card .check.empty { background: #fff; border-color: #C7C7CC; }
.fc-card.notes-card .check.empty::after { display: none; }
.fc-card.notes-card .code-block {
  background: #F2F2F2; border-radius: 6px;
  padding: 6px 8px; margin-top: 4px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 9px; color: var(--milo);
}

/* ===== Drawings ===== */
.fc-card.drawings-card { background: linear-gradient(160deg, #FFFCF0 0%, #FFF6D9 100%); }
.fc-card.drawings-card .canvas {
  position: absolute; left: 22px; right: 22px; top: 4px; bottom: -20px;
  background: #fff; border-radius: 18px 18px 0 0;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  padding: 16px; overflow: hidden;
}
.fc-card.drawings-card .canvas-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fc-card.drawings-card .canvas-title { font-size: 11px; font-weight: 700; color: var(--ink); }
.fc-card.drawings-card .tools { display: flex; gap: 4px; }
.fc-card.drawings-card .tool { width: 14px; height: 14px; border-radius: 999px; border: 1.5px solid #E8E8ED; }
.fc-card.drawings-card .tool.active { background: var(--milo); border-color: var(--milo); }
.fc-card.drawings-card .tool.pink { background: var(--pink); border-color: var(--pink); }
.fc-card.drawings-card .tool.yellow { background: var(--yellow); border-color: var(--yellow); }
.fc-card.drawings-card .doodle { width: 100%; height: calc(100% - 32px); position: relative; }
.fc-card.drawings-card .doodle svg { width: 100%; height: 100%; }

/* ===== Customization ===== */
.fc-card.custom-card { background: linear-gradient(160deg, #F2F2F2 0%, #F4E5FF 100%); }
.fc-card.custom-card .panel {
  position: absolute; left: 22px; right: 22px; top: 4px;
  background: #fff; border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.fc-card.custom-card .section-label {
  font-size: 9px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.fc-card.custom-card .accent-row { display: flex; gap: 8px; }
.fc-card.custom-card .swatch {
  width: 26px; height: 26px; border-radius: 999px;
  box-shadow: inset 0 0 0 2px #fff, 0 2px 6px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.fc-card.custom-card .swatch.active { box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--ink); }
.fc-card.custom-card .icons-row { display: flex; gap: 8px; }
.fc-card.custom-card .icon-tile {
  flex: 1; aspect-ratio: 1; border-radius: 10px;
  background: var(--milo);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
}
.fc-card.custom-card .icon-tile svg { width: 65%; height: 65%; }
.fc-card.custom-card .icon-tile.dark { background: #1C1C1E; }
.fc-card.custom-card .icon-tile.cream { background: #F4E5C9; }
.fc-card.custom-card .icon-tile.pink { background: #FF6B9D; }
.fc-card.custom-card .icon-tile.active::after {
  content: "✓"; position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--green); border: 2px solid #fff;
  border-radius: 999px;
  color: #fff; font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fc-card.custom-card .theme-toggle {
  display: flex; background: #F2F2F2;
  border-radius: 10px; padding: 3px; gap: 2px;
}
.fc-card.custom-card .theme-opt {
  flex: 1; padding: 6px 8px; border-radius: 8px;
  font-size: 10px; font-weight: 600;
  text-align: center; color: var(--muted);
}
.fc-card.custom-card .theme-opt.active {
  background: #fff; color: var(--ink);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ===== Meet Milo ===== */
.fc-card.ai-card { background: linear-gradient(160deg, #EFF4FF 0%, #E0EAFF 100%); }
.fc-card.ai-card .ai-stage { position: relative; width: 100%; height: 100%; }
.fc-card.ai-card .bubble-row {
  position: absolute; top: 14px; left: 22px; right: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.fc-card.ai-card .bubble {
  padding: 9px 13px; border-radius: 14px;
  font-size: 11px; font-weight: 500;
  max-width: 80%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.fc-card.ai-card .bubble.user {
  background: var(--milo); color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end; margin-left: auto;
}
.fc-card.ai-card .bubble.milo {
  background: #fff; color: var(--ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.fc-card.ai-card .mascot-pos { position: absolute; bottom: -12px; right: -8px; width: 56%; }

/* ===== Personality ===== */
.fc-card.personality-card { background: linear-gradient(160deg, #F2F2F2 0%, #FFE9F0 100%); }
.fc-card.personality-card .chip-stack {
  position: absolute; left: 22px; right: 22px; top: 4px;
  display: flex; flex-direction: column; gap: 10px;
}
.fc-card.personality-card .p-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fc-card.personality-card .chip {
  background: #fff; border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 6px;
}
.fc-card.personality-card .chip.active {
  background: var(--milo); color: #fff;
  box-shadow: 0 6px 18px rgba(26,102,255,0.3);
}
.fc-card.personality-card .emoji { font-size: 15px; }
.fc-card.personality-card .preview {
  margin-top: 4px;
  background: #fff; border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 10px;
}
.fc-card.personality-card .mini-mascot { width: 30px; height: 30px; flex-shrink: 0; }
.fc-card.personality-card .preview-text { font-size: 11px; color: var(--ink); font-weight: 500; line-height: 1.3; }

/* ===== Smart Scheduling ===== */
.fc-card.scheduling-card { background: linear-gradient(160deg, #F2F2F2 0%, #E0F5E5 100%); }
.fc-card.scheduling-card .s-stage {
  position: absolute; left: 22px; right: 22px; top: 4px; bottom: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.fc-card.scheduling-card .user-bubble {
  background: var(--milo); color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 9px 13px;
  font-size: 11px; font-weight: 500;
  align-self: flex-end; max-width: 80%;
  box-shadow: 0 4px 14px rgba(26,102,255,0.2);
}
.fc-card.scheduling-card .ai-bubble {
  background: #fff; color: var(--ink);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 13px;
  font-size: 11px; font-weight: 500; max-width: 92%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.fc-card.scheduling-card .ai-bubble .label { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.fc-card.scheduling-card .time-options { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.fc-card.scheduling-card .time-opt {
  display: flex; align-items: center; gap: 8px;
  background: #F7F7F9; border-radius: 8px; padding: 7px 10px; font-size: 11px;
}
.fc-card.scheduling-card .time-opt.best { background: var(--milo-soft); border: 1.5px solid var(--milo); }
.fc-card.scheduling-card .time-opt .day { font-weight: 700; color: var(--ink); flex-shrink: 0; }
.fc-card.scheduling-card .time-opt .hour { color: var(--muted); flex: 1; }
.fc-card.scheduling-card .time-opt .badge {
  font-size: 8px; font-weight: 700;
  background: var(--milo); color: #fff;
  padding: 2px 6px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ===== Web Search (Ask the web) ===== */
.fc-card.web-card { background: var(--card); }
.fc-card.web-card .web-stage {
  position: absolute; left: 22px; right: 22px; top: 4px; bottom: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.fc-card.web-card .search-bar {
  background: #fff; border-radius: 999px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.fc-card.web-card .search-ico {
  width: 13px; height: 13px;
  border: 1.8px solid var(--milo);
  border-radius: 999px; position: relative; flex-shrink: 0;
}
.fc-card.web-card .search-ico::after {
  content: ""; position: absolute; right: -4px; bottom: -4px;
  width: 5px; height: 1.8px; background: var(--milo);
  transform: rotate(45deg); border-radius: 2px;
}
.fc-card.web-card .search-q { font-size: 11px; color: var(--ink); font-weight: 600; }
.fc-card.web-card .knowledge {
  background: #fff; border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-left: 3px solid var(--milo);
}
.fc-card.web-card .k-q { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.fc-card.web-card .k-a { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 4px; }
.fc-card.web-card .k-sub { font-size: 10px; color: var(--ink); line-height: 1.3; }
.fc-card.web-card .link-row { display: flex; flex-direction: column; gap: 5px; }
.fc-card.web-card .link {
  background: #fff; border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 8px;
}
.fc-card.web-card .favicon { width: 14px; height: 14px; border-radius: 4px; background: var(--green); flex-shrink: 0; }
.fc-card.web-card .favicon.orange { background: var(--orange); }
.fc-card.web-card .link-text { font-size: 10px; font-weight: 500; color: var(--ink); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== Widgets ===== */
.fc-card.widgets-card { background: linear-gradient(180deg, #F2F2F2 0%, #D6E4FF 100%); }
.fc-card.widgets-card .home {
  position: absolute; left: 22px; right: 22px; top: 4px; bottom: -20px;
  background: linear-gradient(160deg, #4F8BFF 0%, #1A66FF 60%, #134CC2 100%);
  border-radius: 24px; padding: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
  overflow: hidden;
}
.fc-card.widgets-card .home::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(0,0,0,0.15), transparent 40%);
  pointer-events: none;
}
.fc-card.widgets-card .widget {
  position: relative; background: #fff; border-radius: 16px;
  padding: 11px 13px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  z-index: 2;
}
.fc-card.widgets-card .widget.cal { margin-bottom: 10px; }
.fc-card.widgets-card .w-label { color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.fc-card.widgets-card .w-day { font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; margin: 2px 0 8px; letter-spacing: -0.03em; }
.fc-card.widgets-card .w-task { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.fc-card.widgets-card .w-task .check-mini { width: 9px; height: 9px; border-radius: 999px; border: 1.5px solid var(--milo); flex-shrink: 0; }
.fc-card.widgets-card .small-row { display: flex; gap: 10px; }
.fc-card.widgets-card .widget.small { flex: 1; padding: 10px 12px; }
.fc-card.widgets-card .w-num { font-size: 22px; font-weight: 700; color: var(--milo); line-height: 1; margin-bottom: 3px; letter-spacing: -0.02em; }
.fc-card.widgets-card .w-rem-label { font-size: 9px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.fc-card.widgets-card .w-bar { height: 4px; border-radius: 3px; background: #E8E8ED; margin-bottom: 3px; }
.fc-card.widgets-card .w-bar.short { width: 70%; }
.fc-card.widgets-card .milo-icon {
  position: absolute; bottom: 50px; right: 18px;
  width: 44px; height: 44px;
  background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 3;
}

@media (max-width: 600px) {
  .feature-cards-grid { gap: 12px; }
  .fc-card { border-radius: 22px; }
  .fc-card h3.fc-title { padding: 22px 18px 0; font-size: 19px; }
  .fc-card .fc-kicker { padding: 0 18px; }
  .fc-card .fc-visual { margin-top: 12px; }
}
