/* ========================================
   AI4Live — Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Accent */
  --primary: #0A84FF;
  --primary-hover: #3399FF;
  --primary-muted: rgba(10, 132, 255, 0.1);
  --primary-glow: rgba(10, 132, 255, 0.15);

  /* Dark */
  --canvas-dark: #0A0A0A;
  --canvas-elevated: #111111;
  --card-dark: #161616;
  --border-dark: #222222;
  --border-dark-soft: #1A1A1A;

  /* Light */
  --canvas-light: #FFFFFF;
  --canvas-soft: #F5F5F5;
  --card-light: #FAFAFA;
  --border-light: #E5E5E5;

  /* Text on dark */
  --txt-d-primary: #F5F5F5;
  --txt-d-secondary: #A0A0A0;
  --txt-d-muted: #606060;
  --txt-d-faint: #444444;

  /* Text on light */
  --txt-l-primary: #0A0A0A;
  --txt-l-secondary: #444444;
  --txt-l-muted: #888888;

  /* Brand logo colors */
  --brand-pink: #E83670;
  --brand-blue: #5AC4FA;
  --brand-purple: #7B3FD9;

  /* Sizing */
  --container-max: 1280px;
  --container-pad: 48px;
  --section-gap: 120px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

@media (max-width: 768px) {
  :root {
    --container-pad: 24px;
    --section-gap: 72px;
  }
}
@media (max-width: 480px) {
  :root {
    --container-pad: 20px;
  }
}

/* Mobile safety net: prevent any element from breaking horizontal flow */
@media (max-width: 768px) {
  img, video, iframe { max-width: 100%; height: auto; }
  .page-hero__title,
  .hero__title,
  .sec-head__title,
  .cta-final__title,
  .founder__name,
  .saas-detail__name,
  .clients__title,
  .faq__title { word-break: break-word; overflow-wrap: anywhere; }
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--canvas-dark);
  color: var(--txt-d-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Typography utility classes */
.t-display-xl { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.03em; }
.t-display-lg { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.025em; }
.t-display-md { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.08; letter-spacing: -0.02em; }
.t-display-sm { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; letter-spacing: -0.01em; }
.t-heading-lg { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: -0.005em; }
.t-heading-sm { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 18px; line-height: 1.4; }
.t-body-lg { font-size: 18px; line-height: 1.6; }
.t-body-md { font-size: 16px; line-height: 1.6; }
.t-body-sm { font-size: 14px; line-height: 1.5; }
.t-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.t-stat { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(48px, 6vw, 80px); line-height: 1; letter-spacing: -0.03em; }
.t-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--container-pad), env(safe-area-inset-left));
  padding-right: max(var(--container-pad), env(safe-area-inset-right));
  width: 100%;
}

/* Section base */
.section { padding: var(--section-gap) 0; position: relative; }
.section--dark { background: var(--canvas-dark); color: var(--txt-d-primary); }
.section--elevated { background: var(--canvas-elevated); color: var(--txt-d-primary); }
.section--light { background: var(--canvas-light); color: var(--txt-l-primary); }
.section--soft { background: var(--canvas-soft); color: var(--txt-l-primary); }

/* Section eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}
.section--light .eyebrow, .section--soft .eyebrow { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all 200ms var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-hover); }
.btn--secondary {
  background: transparent;
  color: var(--txt-d-primary);
  border-color: #333;
}
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn--ghost {
  background: transparent;
  color: var(--txt-l-primary);
  border-color: var(--border-light);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--white {
  background: #fff;
  color: var(--canvas-dark);
}
.btn--white:hover { background: #e8e8e8; }
.btn .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* Brand icon inside buttons */
.btn-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
}
.sticky-bar__btn .btn-ico { width: 16px; height: 16px; }

/* Tag / badge */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--primary-muted);
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Cards */
.card {
  border-radius: 16px;
  padding: 40px;
  transition: all 250ms var(--ease);
}
.card--dark {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
}
.card--dark:hover { border-color: var(--primary); }
.card--light {
  background: var(--canvas-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.card--light:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.10); }

@media (max-width: 768px) {
  .card { padding: 24px; border-radius: 12px; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  transition: background 300ms var(--ease), backdrop-filter 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border-dark-soft);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav__brand-mark { width: 32px; height: 32px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-d-secondary);
  transition: color 200ms var(--ease);
}
.nav__link:hover { color: var(--txt-d-primary); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--canvas-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms var(--ease);
}
.nav__cta:hover { background: #e8e8e8; }
.nav__burger { display: none; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 13px; }
}

/* Sticky bar bottom */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #1E1E1E;
  z-index: 99;
  display: flex;
  align-items: center;
  transition: transform 350ms var(--ease);
}
.sticky-bar--hidden { transform: translateY(100%); }
.sticky-bar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  min-width: 0;
}
.sticky-bar__dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.sticky-bar__strong { color: #CCC; font-weight: 500; }
.sticky-bar__sub { color: #666; }
.sticky-bar__right { display: flex; gap: 8px; flex-shrink: 0; }
.sticky-bar__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 200ms var(--ease);
}
.sticky-bar__btn:active { transform: scale(0.97); }
.sticky-bar__btn--ghost {
  background: transparent;
  border: 1px solid #252525;
  color: #999;
}
.sticky-bar__btn--ghost:hover { border-color: #444; color: #ccc; }
.sticky-bar__btn--primary {
  background: var(--primary);
  color: #fff;
}
.sticky-bar__btn--primary:hover { background: var(--primary-hover); }

/* Ask-mini variant (used inside sticky-bar left) */
.ask-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: #050505;
  border: 1px solid #1A1A1A;
  border-radius: 100px;
}
.ask-mini__label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BBB;
  padding: 0 14px 0 10px;
  white-space: nowrap;
}
.ask-mini__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #DDD;
  background: #1A1A1A;
  transition: all 180ms var(--ease);
  white-space: nowrap;
}
.ask-mini__btn:hover {
  background: #FFFFFF;
  color: #000;
}
.ask-mini__btn .ask-ai-pill__icon { width: 14px; height: 14px; }
.ask-mini__btn:hover .ask-ai-pill__icon path,
.ask-mini__btn:hover .ask-ai-pill__icon circle,
.ask-mini__btn:hover .ask-ai-pill__icon rect {
  fill: #000;
}
@media (max-width: 480px) {
  .sticky-bar__btn--ghost { display: none; }
  /* Keep both Claude AND ChatGPT visible on small screens */
}
@media (max-width: 640px) {
  .sticky-bar__sub { display: none; }
  .sticky-bar__btn { padding: 6px 10px; font-size: 12px; }
}

/* Ask-AI pill */
.ask-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #0E0E0E;
  border: 1px solid #1F1F1F;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.ask-ai-pill__label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BBB;
  padding: 0 18px 0 16px;
  white-space: nowrap;
}
.ask-ai-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #DDD;
  background: #1A1A1A;
  border: 1px solid transparent;
  transition: all 180ms var(--ease);
  white-space: nowrap;
}
.ask-ai-pill__btn:hover {
  background: #FFFFFF;
  color: #000;
}
.ask-ai-pill__btn:hover .ask-ai-pill__icon path,
.ask-ai-pill__btn:hover .ask-ai-pill__icon circle,
.ask-ai-pill__btn:hover .ask-ai-pill__icon rect {
  fill: #000;
  stroke: #000;
}
.ask-ai-pill__icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ask-ai-pill__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity 180ms var(--ease);
}
.ask-ai-pill__icon--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.ask-ai-pill__btn:hover .ask-ai-pill__icon--default { opacity: 0; }
.ask-ai-pill__btn:hover .ask-ai-pill__icon--hover { opacity: 1; }
.ask-mini__btn:hover .ask-ai-pill__icon--default { opacity: 0; }
.ask-mini__btn:hover .ask-ai-pill__icon--hover { opacity: 1; }

@media (max-width: 560px) {
  .ask-ai-pill { flex-wrap: wrap; padding: 8px; }
  .ask-ai-pill__label { padding: 4px 12px 8px; width: 100%; text-align: center; }
  .ask-ai-pill__btn { flex: 1; justify-content: center; padding: 10px 14px; font-size: 13px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--canvas-dark);
  color: var(--txt-d-secondary);
  padding: 80px 0 100px;
  border-top: 1px solid var(--border-dark-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-text {
  font-size: 14px;
  color: var(--txt-d-muted);
  max-width: 320px;
  margin-top: 20px;
  line-height: 1.6;
}
.footer__copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #444;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border-dark-soft);
}
.footer__top-text {
  max-width: 480px;
}
.footer__top-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.footer__top-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--txt-d-primary);
}
@media (max-width: 768px) {
  .footer__top { flex-direction: column; align-items: flex-start; padding-bottom: 40px; margin-bottom: 40px; }
}
.footer__col-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt-d-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--txt-d-secondary);
  transition: color 200ms;
}
.footer__col a:hover { color: var(--primary); }

/* Footer legal block */
.footer__legal {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark-soft);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__legal-org {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-d-muted);
  max-width: 460px;
}
.footer__legal-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--txt-d-secondary);
  letter-spacing: 0.01em;
}
.footer__legal-line { line-height: 1.5; }
.footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer__legal-links a {
  font-size: 13px;
  color: var(--txt-d-secondary);
  transition: color 200ms;
}
.footer__legal-links a:hover { color: var(--primary); }
@media (max-width: 768px) {
  .footer__legal { flex-direction: column; gap: 28px; }
  .footer__legal-links { text-align: left; }
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer { padding: 60px 0 100px; }
  .footer__top { gap: 24px; }
  .footer__top-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ask-ai-pill { width: 100%; flex-wrap: wrap; padding: 6px; }
  .ask-ai-pill__label { width: 100%; text-align: center; padding: 6px 0 4px; }
  .ask-ai-pill__btn { flex: 1; justify-content: center; padding: 10px 14px; }
  /* Disable hover-swap on touch in footer pill too */
  .ask-ai-pill__btn .ask-ai-pill__icon--hover { display: none; }
  .ask-ai-pill__btn:hover { background: #1A1A1A; color: #DDD; }
  .ask-ai-pill__btn:hover .ask-ai-pill__icon--default { opacity: 1; }
}

/* Page padding for fixed nav */
body { padding-top: 0; padding-bottom: 60px; }

/* Mobile: smaller bottom inset for sticky bar so safe-area shows nicely */
@media (max-width: 480px) {
  body { padding-bottom: 56px; }
  .sticky-bar { padding-bottom: env(safe-area-inset-bottom, 0); height: auto; }
  .sticky-bar__inner { padding: 8px var(--container-pad); }
  .nav__inner { gap: 8px; }
  .nav__brand span { font-size: 16px; }
  .nav__brand-mark { width: 26px; height: 26px; }
  .nav__cta { padding: 7px 12px; font-size: 12px; }
  /* Mobile sticky bar layout */
  .sticky-bar__inner { flex-wrap: nowrap; gap: 6px; }
  .sticky-bar__btn--primary { padding: 8px 12px; font-size: 12px; }
  .ask-mini { padding: 3px; }
}

/* ===== Touch / mobile sticky-bar Ask-AI: icon-only, ALWAYS-visible logos =====
   iOS Safari was unreliable with the stacked dual-<img> opacity swap (blank
   ovals). On mobile we drop the inner imgs entirely and paint each brand mark
   as a background-image on the button itself — targeted by href. Bulletproof. */
@media (hover: none), (max-width: 768px) {
  .ask-mini { background: transparent; border: none; padding: 0; gap: 10px; }
  .ask-mini__label { display: none; }
  .ask-mini__btn span { display: none; }
  .ask-mini__btn .ask-ai-pill__icon { display: none !important; }
  .ask-mini__btn {
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
  }
  .ask-mini__btn:hover,
  .ask-mini__btn:active { background-color: #FFFFFF; }
  /* Inline SVG data-URIs — no network fetch, cannot fail on mobile */
  .ask-mini__btn[href*="chatgpt"] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M22.28 9.78a5.94 5.94 0 0 0-.51-4.88 6 6 0 0 0-6.5-2.88A6 6 0 0 0 5.16 4.06a6 6 0 0 0-4.01 2.91 6 6 0 0 0 .74 7.05 5.94 5.94 0 0 0 .51 4.88 6 6 0 0 0 6.5 2.88 6 6 0 0 0 10.11 1.96 6 6 0 0 0 4.01-2.91 6 6 0 0 0-.74-7.05zM13.36 20.5a4.46 4.46 0 0 1-2.87-1.04l.14-.08 4.78-2.76a.78.78 0 0 0 .4-.68v-6.75l2.02 1.17.02.04v5.58a4.5 4.5 0 0 1-4.49 4.52zM3.72 16.4a4.46 4.46 0 0 1-.53-3l.14.09 4.78 2.76a.78.78 0 0 0 .79 0L14.74 13v2.33a.08.08 0 0 1-.03.07l-4.83 2.79a4.5 4.5 0 0 1-6.16-1.65v-.14zm-1.25-10.4a4.45 4.45 0 0 1 2.35-1.97v5.69a.78.78 0 0 0 .39.68l5.81 3.35-2.02 1.17a.08.08 0 0 1-.08 0L4.1 12.13A4.5 4.5 0 0 1 2.47 6zm16.6 3.86-5.83-3.39 2.02-1.16a.08.08 0 0 1 .08 0l4.83 2.79a4.5 4.5 0 0 1-.68 8.11v-5.69a.79.79 0 0 0-.42-.66zm2.01-3.01-.14-.09-4.77-2.78a.78.78 0 0 0-.79 0L9.62 7v-2.33a.08.08 0 0 1 .03-.07l4.83-2.78a4.5 4.5 0 0 1 6.68 4.66zM8.52 13.13l-2.02-1.17a.08.08 0 0 1-.04-.06V6.36a4.5 4.5 0 0 1 7.38-3.45l-.14.08-4.78 2.76a.78.78 0 0 0-.4.68v6.71zm1.1-2.37 2.59-1.5 2.6 1.5v3l-2.6 1.5-2.6-1.5z'/%3E%3C/svg%3E"); }
  .ask-mini__btn[href*="claude"]  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23D97757' d='M12 2c.7 4.5 3 7.3 7 8-4 .7-6.3 3.5-7 8-.7-4.5-3-7.3-7-8 4-.7 6.3-3.5 7-8z'/%3E%3C/svg%3E"); }
}
