@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* HostAiHub — "Warm Sand" design system
   Implements the Claude Design redesign across the whole app.
   Plain-CSS component library used alongside the Tailwind Play CDN.
   A single configurable --accent drives every brand surface. */

:root {
  /* Brand accent (configurable per-deploy via inline --accent on .shell) */
  --accent: #F15A2B;
  --accent-dark: #D8431B;

  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --border: #E9E1D5;
  --border-strong: #DBD1C2;

  /* Brand tokens map to the accent */
  --brand: var(--accent);
  --brand-dark: var(--accent-dark);
  --brand-soft: color-mix(in srgb, var(--accent) 12%, #fff);

  --text: #1A1714;
  --muted: #6E665C;
  --subtle: #8A8076;

  --success: #1E7A52;
  --success-soft: #E6F1E8;
  --warning: #9A6800;
  --warning-soft: #F7ECD6;
  --danger: #C0392B;
  --danger-soft: #F7E3E0;
  --info: #2F6FB0;
  --info-soft: #E5EEF6;

  --radius: 18px;
  --radius-sm: 11px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 2px rgba(26, 23, 20, .05), 0 1px 3px rgba(26, 23, 20, .06);
  --shadow-md: 0 8px 24px -10px rgba(26, 23, 20, .16), 0 2px 6px rgba(26, 23, 20, .05);
  --shadow-lg: 0 30px 70px -28px rgba(26, 23, 20, .34);
  --ring: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Typography ---- */
.h1, .h2, .h3, .brand, .price, .stat .v, .avatar, .agent-ic, .side-cta .v {
  font-family: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
}
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}
.h1 { font-size: clamp(38px, 5.4vw, 70px); line-height: 1.02; font-weight: 800; letter-spacing: -.025em; }
.h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; font-weight: 800; letter-spacing: -.025em; }
.h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.lead { font-size: 18px; color: var(--muted); line-height: 1.6; }
.muted { color: var(--muted); }
.subtle { color: var(--subtle); }
.mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.grad-text {
  background: linear-gradient(95deg, var(--accent), #E0457B 75%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-glow {
  background:
    radial-gradient(60% 110% at 82% -10%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 60%),
    radial-gradient(46% 90% at 6% 2%, rgba(26, 23, 20, .045), transparent 58%);
}
.grid-bg {
  background-image:
    linear-gradient(rgba(26, 23, 20, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 20, .045) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; line-height: 1; cursor: pointer;
  padding: 11px 18px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: all .16s ease; white-space: nowrap; user-select: none;
}
.btn svg, .btn i { width: 17px; height: 17px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px -12px color-mix(in srgb, var(--accent) 65%, transparent); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 14px 28px -12px color-mix(in srgb, var(--accent) 70%, transparent); }
/* "Start here" CTA — the Setup Guide & Terminal button on the instance page. A gentle pulsing ring so
   new users immediately spot where to onboard their agent. Stops on hover/focus; respects reduced motion. */
.btn-setup-cta { animation: setupPulse 2.2s ease-out infinite; }
.btn-setup-cta:hover, .btn-setup-cta:focus-visible { animation: none; }
@keyframes setupPulse {
  0%   { box-shadow: 0 8px 20px -12px color-mix(in srgb, var(--accent) 60%, transparent), 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 8px 20px -12px color-mix(in srgb, var(--accent) 60%, transparent), 0 0 0 9px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 8px 20px -12px color-mix(in srgb, var(--accent) 60%, transparent), 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .btn-setup-cta { animation: none; } }
.btn-outline { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: #F4EEE4; color: var(--text); }
.btn-danger { background: #fff; color: var(--danger); border-color: var(--danger-soft); }
.btn-danger:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-lg { padding: 14px 24px; font-size: 15.5px; border-radius: 12px; }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ---- Cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.card-pad { padding: 24px; }
.card-hover { transition: all .18s ease; }
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }

/* ---- Badges ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; line-height: 1.2;
}
.badge .dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-brand { background: var(--brand-soft); color: var(--accent); }
.badge-muted { background: #F1EADF; color: var(--muted); }

/* ---- Forms ---- */
.label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.input, .select, .textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 11px 13px; font-size: 14.5px; color: var(--text);
  font-family: inherit; transition: border .15s, box-shadow .15s;
}
.input::placeholder { color: var(--subtle); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.help { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.input-affix { position: relative; }
.input-affix .toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 7px;
}
.input-affix .toggle:hover { background: #F4EEE4; color: var(--text); }

/* ---- Switch / toggle ---- */
.switch { position: relative; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.switch input { display: none; }
.switch .track { width: 42px; height: 24px; background: var(--border-strong); border-radius: 999px; transition: .2s; position: relative; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 999px; transition: .2s; box-shadow: var(--shadow-sm); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(18px); }

/* ---- Nav ---- */
.topnav {
  position: sticky; top: 0; z-index: 40; background: rgba(250, 247, 242, .8);
  backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--border);
}
.topnav .inner { height: 70px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand .mark {
  position: relative; width: 31px; height: 31px; border-radius: 9px; display: grid; place-items: center; color: #fff;
  background: #1A1714;
}
.brand .mark::after {
  content: ""; position: absolute; top: -3px; right: -3px; width: 8px; height: 8px;
  border-radius: 999px; background: var(--accent); border: 2px solid var(--surface);
}
.navlink { color: var(--muted); font-weight: 500; font-size: 15px; padding: 8px 14px; border-radius: 9px; transition: .15s; }
.navlink:hover { color: var(--text); background: #F1EADF; }

/* ---- Pricing ---- */
.price { font-size: 42px; font-weight: 800; letter-spacing: -.02em; }
.price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.tick { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14.5px; color: #3C362E; }
.tick i { color: var(--brand); width: 18px; height: 18px; flex: none; margin-top: 1px; }
.ribbon {
  position: absolute; top: 16px; right: 16px; background: var(--brand); color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}

/* ---- Stat tile ---- */
.stat-link { display: block; text-decoration: none; color: inherit; }
.stat { display: flex; flex-direction: column; gap: 6px; }.stat .v { font-size: 27px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.stat .k { font-size: 13px; color: var(--muted); font-weight: 500; }
/* The icon chip carries BOTH classes (<span class="stat ic">), so the descendant
   selector `.stat .ic` never matches it — the compound `.stat.ic` does. */
.stat.ic {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 13%, #fff); color: var(--accent);
}
.stat.ic svg, .stat.ic i { width: 20px; height: 20px; }

/* ---- Table ---- */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--subtle); padding: 12px 16px; border-bottom: 1px solid var(--border); }
.table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: #3C362E; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background .12s; }
.table tbody tr:hover { background: #FBF8F3; }

/* ---- Deploy stage tracker ---- */
.tracker { display: flex; align-items: center; width: 100%; }
.tracker .step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: none; width: 92px; text-align: center; }
.tracker .dot {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--border-strong); color: var(--subtle); font-weight: 700; font-size: 13px;
}
.tracker .step .lbl { font-size: 12px; color: var(--muted); font-weight: 500; }
.tracker .line { height: 2px; background: var(--border-strong); flex: 1 1 auto; margin-bottom: 26px; border-radius: 2px; }
.tracker .step.done .dot { background: var(--success); border-color: var(--success); color: #fff; }
.tracker .step.done + .line, .tracker .line.done { background: var(--success); }
.tracker .step.active .dot { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent); animation: pulse 1.8s infinite; }
.tracker .step.active .lbl { color: var(--accent); font-weight: 600; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent); }
  50%      { box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 5%, transparent); }
}

/* ---- App shell (dashboard / admin) ---- */
.shell { display: grid; grid-template-columns: 258px 1fr; min-height: 100vh; }
.sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 20px 16px; position: sticky; top: 0; height: 100vh; overflow: auto; }
.side-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 500; font-size: 14.5px; transition: .14s; margin-bottom: 3px; }
.side-link i { width: 18px; height: 18px; }
.side-link:hover { background: #F4EEE4; color: var(--text); }
.side-link.active { background: var(--brand-soft); color: var(--accent); font-weight: 600; }
.side-section { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--subtle); padding: 18px 12px 6px; }
.main { padding: 0; background: var(--bg); min-width: 0; }
.topbar { height: 68px; background: rgba(255, 255, 255, .82); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; position: sticky; top: 0; z-index: 20; }
.content { padding: 28px; }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: #1A1714; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }

/* Sidebar bottom CTA card */
.side-cta {
  border: 1px solid color-mix(in srgb, var(--accent) 22%, #fff);
  background: color-mix(in srgb, var(--accent) 9%, #fff);
  border-radius: 16px; padding: 18px;
}
.side-cta .t { font-size: 13.5px; font-weight: 600; color: var(--accent); margin-bottom: 3px; }
.side-cta .v { font-weight: 800; font-size: 22px; line-height: 1.15; margin-bottom: 12px; color: var(--text); }

/* ---- Logo chips for agents ---- */
.agent-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; font-size: 18px; color: #fff; }
.ic-openclaw { background: var(--accent); }
.ic-hermes { background: #1A1714; }
.ic-n8n { background: #9B3B6A; }
.ic-soon { background: #B8AE9E; }

/* ---- Auth split (login / register) ---- */
.auth-split { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; }
.auth-brand {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px; border-right: 1px solid var(--border); overflow: hidden;
}
.auth-brand::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(60% 80% at 85% -5%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
    radial-gradient(50% 70% at 0% 10%, rgba(26, 23, 20, .04), transparent 60%);
}
.auth-brand::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .7;
  background-image:
    linear-gradient(rgba(26, 23, 20, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 20, .045) 1px, transparent 1px);
  background-size: 42px 42px; -webkit-mask-image: linear-gradient(160deg, #000, transparent 80%); mask-image: linear-gradient(160deg, #000, transparent 80%);
}
.auth-brand > * { position: relative; }
.auth-formcol { display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-formwrap { width: 100%; max-width: 384px; }
.auth-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #3C362E; }
.auth-feature i { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

/* ---- Misc ---- */
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.kbd { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; background: #F1EADF; border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; color: #3C362E; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
details.faq { border-bottom: 1px solid var(--border); padding: 18px 4px; }
details.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq[open] summary i { transform: rotate(180deg); }
details.faq summary i { transition: .2s; color: var(--muted); }
details.faq p { color: var(--muted); margin: 12px 0 0; }

/* ---- Legal / long-form prose ---- */
.legal-prose { max-width: 768px; }
.legal-prose > h2 { font-family: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.01em; color: var(--text); margin: 36px 0 12px; }
.legal-prose > h2:first-of-type { margin-top: 0; }
.legal-prose h3 { font-weight: 600; font-size: 16px; color: var(--text); margin: 0 0 6px; }
.legal-prose p { color: var(--muted); line-height: 1.75; margin: 0 0 18px; }
.legal-prose ul, .legal-prose ol { color: var(--muted); line-height: 1.7; margin: 0 0 20px; padding-left: 22px; }
.legal-prose li { margin-bottom: 7px; }
.legal-prose a { color: var(--brand); font-weight: 500; }
.legal-prose a:hover { text-decoration: underline; }
.legal-prose strong { color: var(--text); font-weight: 600; }
.legal-prose .updated { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; color: var(--subtle); margin: 0 0 28px; }
.legal-prose .callout { background: var(--success-soft); border: 1px solid color-mix(in srgb, var(--success) 24%, #fff); border-radius: 14px; padding: 18px 20px; margin: 0 0 22px; }
.legal-prose .callout h3 { color: var(--success); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.legal-prose .callout ul { color: #2C6B4D; margin-bottom: 0; }
.legal-prose .rights-grid { display: grid; gap: 12px; margin: 0 0 22px; }
.legal-prose .rights-grid .card { padding: 16px 18px; }
.legal-prose .rights-grid p { margin: 0; font-size: 14px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 0 0 22px; }
.legal-table th { text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--subtle); padding: 11px 14px; border: 1px solid var(--border); background: var(--bg); }
.legal-table td { padding: 11px 14px; border: 1px solid var(--border); color: #3C362E; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .auth-split { grid-template-columns: minmax(0, 1fr); }
  .auth-brand { display: none; }
}
@media (max-width: 820px) {
  .shell { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
}

/* ---- Floating mockup screen switcher (design previews only) ---- */
#mockbar {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 90;
  background: rgba(26, 23, 20, .92); backdrop-filter: blur(8px); border-radius: 999px;
  padding: 6px; display: flex; gap: 2px; box-shadow: var(--shadow-lg); max-width: 94vw; overflow: auto;
}
#mockbar a { color: #C4BCAE; font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px; white-space: nowrap; transition: .14s; }
#mockbar a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
#mockbar a.active { background: #fff; color: #1A1714; }
#mockbar .mb-label { color: var(--muted); font-size: 11px; font-weight: 700; padding: 7px 10px; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 720px) { #mockbar .mb-label { display: none; } }

/* ---- Admin dashboard: chart, overview, activity feed ---- */
.chart-bars { display: flex; align-items: flex-end; gap: 10px; height: 200px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; position: relative; }
.bar { width: 100%; max-width: 52px; background: linear-gradient(180deg, var(--brand), var(--accent-dark)); border-radius: 8px 8px 0 0; transition: opacity .15s; min-height: 4px; }
.bar-col:hover .bar { opacity: .82; }
.bar-col:hover .bar-amt { opacity: 1; }
.bar-amt { position: absolute; top: -2px; font-size: 11px; font-weight: 700; font-family: 'JetBrains Mono', monospace; color: var(--text); opacity: 0; transition: opacity .15s; pointer-events: none; white-space: nowrap; transform: translateY(-100%); }
.bar-lbl { font-size: 12px; color: var(--muted); font-weight: 500; }
.ov-row { display: flex; flex-direction: column; gap: 2px; }
.ov-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; border-radius: 9px; font-size: 14px; transition: background .12s; text-decoration: none; color: inherit; }
.ov-item:hover { background: #F4EEE4; }
.ov-l { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.ov-l i { width: 16px; height: 16px; }
.ov-v { font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 13.5px; }
.ov-tile { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 14px 8px; border: 1px solid var(--border); border-radius: 11px; text-decoration: none; color: inherit; transition: .15s; }
.ov-tile:hover { border-color: var(--border-strong); background: #FBF8F3; transform: translateY(-1px); }
.ov-tile i { width: 18px; height: 18px; color: var(--accent); }
.ov-tile span { font-weight: 800; font-size: 20px; font-family: 'Bricolage Grotesque', sans-serif; }
.ov-tile small { font-size: 11px; color: var(--muted); }
.feed { display: flex; flex-direction: column; gap: 2px; }
.feed-item { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.feed-item:last-child { border-bottom: none; }
.feed-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--brand-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.feed-ic i { width: 15px; height: 15px; }
