/* ============================================================
   GEOX — Canva-inspired landing page
   Primary accent: red
   ============================================================ */

:root {
  --red: #FF2E4C;
  --red-dark: #E61E3C;
  --red-soft: #FFE5EA;
  --orange: #FF8A33;
  --pink: #FF5B8A;
  --ink: #141427;
  --ink-2: #3A3A55;
  --muted: #6B6B85;
  --line: #ECE6DE;
  --cream: #FBF7F2;
  --cream-2: #FFF5F1;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20,20,39,0.06);
  --shadow-md: 0 12px 32px rgba(20,20,39,0.08);
  --shadow-lg: 0 24px 60px rgba(255,46,76,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --grad-red: linear-gradient(135deg, #FF2E4C 0%, #FF6B47 100%);
  --grad-warm: linear-gradient(135deg, #FF5B8A 0%, #FF8A33 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-red);
  color: white;
  box-shadow: 0 10px 24px rgba(255,46,76,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,46,76,0.36); }

.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--red); }

.btn-ghost-light {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.25); }

.play-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  align-items: center; justify-content: center;
  font-size: 9px;
  padding-left: 2px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--ink); }
.logo-mark { display: inline-flex; align-items: baseline; }
.logo-plus { color: var(--red); font-weight: 800; margin: 0 1px; font-size: 1.05em; }

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
  color: var(--ink-2);
  font-size: 15px;
}
.nav-links a:hover { color: var(--red); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FFF8F3 0%, #FFFFFF 80%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob-1 { width: 420px; height: 420px; background: #FFC9D3; top: -120px; left: -120px; }
.blob-2 { width: 360px; height: 360px; background: #FFD7B5; top: 120px; right: -80px; }
.blob-3 { width: 300px; height: 300px; background: #FFE3C2; bottom: -80px; left: 40%; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,46,76,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.2); opacity: 0.7; } }

h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.highlight {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  white-space: nowrap;
}

.lead {
  font-size: 19px;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas.center { justify-content: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}

.avatars { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg, #FF6B47, #FF2E4C); }
.a2 { background: linear-gradient(135deg, #6BB6D8, #5A8BC4); }
.a3 { background: linear-gradient(135deg, #FFBF48, #FF8A33); }
.a4 { background: linear-gradient(135deg, #A78BFA, #FF5B8A); }

/* ============ MOCKUP ============ */
.hero-mockup {
  position: relative;
  perspective: 1400px;
}
.mockup-window {
  background: white;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(20,20,39,0.22), 0 12px 28px -12px rgba(20,20,39,0.10);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  border: 1px solid rgba(20,20,39,0.06);
}
.mockup-window:hover { transform: rotate(0) scale(1.015); }

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #FF5F56; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #27C93F; }
.mockup-url {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
}

.mockup-body { display: grid; grid-template-columns: 180px 1fr; min-height: 380px; }

.mockup-sidebar {
  background: white;
  border-right: 1px solid var(--line);
  padding: 14px 12px;
  font-size: 13px;
}
.side-title { font-weight: 700; font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
}
.side-item.active { background: var(--red-soft); color: var(--red-dark); font-weight: 600; }
.side-item .eye { margin-left: auto; font-size: 12px; }
.swatch { width: 12px; height: 12px; border-radius: 3px; }
.sw-red { background: var(--red); }
.sw-blue { background: #4FA4D8; }
.sw-green { background: #3BC47A; }
.sw-orange { background: var(--orange); }
.sw-purple { background: #A78BFA; }
.side-btn {
  margin-top: 10px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  border: 1.5px dashed var(--red-soft);
  border-radius: 8px;
  text-align: center;
}

.mockup-map {
  position: relative;
  background: var(--cream);
}
.map-svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.map-tool {
  position: absolute;
  top: 14px; right: 14px;
  background: white;
  border-radius: 10px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.map-tool button {
  width: 34px; height: 34px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-2);
}
.map-tool button:hover { background: var(--cream); }
.map-tool .tool-active { background: var(--red); color: white; }

.map-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 186px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(20,20,39,0.06);
  border-radius: 14px;
  padding: 13px 15px;
  box-shadow: 0 12px 30px -10px rgba(20,20,39,0.20);
  font-size: 12px;
}
.mc-title {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 700;
  font-size: 13px;
}
.mc-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); background: var(--cream-2, #f2ede6);
  padding: 3px 6px; border-radius: 5px;
}
.mc-grad {
  height: 8px; border-radius: 999px; margin: 11px 0 5px;
  background: linear-gradient(90deg, #5B9BD8, #86C98C, #FFC24A, #FF9A5C, #E6553F);
}
.mc-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(20,20,39,0.05);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px -14px rgba(20,20,39,0.28);
  font-size: 13px;
}
.float-card strong { display: block; color: var(--ink); font-weight: 700; }
.float-card small { color: var(--muted); }
.fc-icon {
  font-size: 18px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--red-soft, #ffe9e4);
}
.fc-1 { top: 40px; left: -20px; animation: float 5s ease-in-out infinite; }
.fc-2 { bottom: 30px; right: -10px; animation: float 5s ease-in-out infinite 1.5s; }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ============ TRUST ============ */
.trust {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  color: var(--ink-2);
  font-weight: 600;
  opacity: 0.7;
  font-size: 15px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 110px 0;
}
.section-alt {
  background: var(--cream-2);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* ============ FEATURES ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card h3 { font-size: 20px; margin: 0 0 10px; letter-spacing: -0.01em; }
.feature-card p { color: var(--muted); margin: 0; font-size: 15px; }
.f-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.f-icon-red { background: var(--red-soft); }
.f-icon-orange { background: #FFE8D3; }
.f-icon-pink { background: #FFE0EB; }

/* ============ TABS / AUDIENCE ============ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.tab {
  background: white;
  border: 1.5px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 14px;
  transition: all .15s;
}
.tab:hover { border-color: var(--red); color: var(--red); }
.tab.active { background: var(--ink); color: white; border-color: var(--ink); }

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.tab-panel.active { display: grid; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

.panel-copy h3 { font-size: 28px; margin: 0 0 14px; letter-spacing: -0.02em; }
.panel-copy p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px; height: 20px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.panel-visual {
  height: 280px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.panel-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,46,76,0.14), rgba(255,138,51,0.1));
}
.visual-1 { background: repeating-linear-gradient(45deg, #FFE5EA 0 20px, #FFD3DA 20px 40px); }
.visual-2 { background: radial-gradient(circle at 30% 30%, #FFD3DA, #FBF7F2 60%), var(--cream); }
.visual-3 { background: linear-gradient(135deg, #FFF5F1, #FFE0EB); }
.visual-4 { background: repeating-linear-gradient(0deg, #FFF5F1 0 18px, #FFE5EA 18px 20px); }
.visual-5 { background: radial-gradient(circle at 70% 60%, #FF8A33 0%, #FFE5EA 40%, #FFF5F1 100%); }

/* ============ DATA GRID ============ */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.data-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.data-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.d-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  margin-bottom: 14px;
}
.d-blue { background: #DEEFFB; color: #1B73B5; }
.d-green { background: #D7F3E3; color: #1B7A45; }
.d-orange { background: #FFE8D3; color: #A84F00; }
.d-purple { background: #EDE4FE; color: #6539C7; }
.d-pink { background: #FFE0EB; color: #BF2966; }
.data-card h4 { margin: 0 0 6px; font-size: 18px; }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-red);
  color: white;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(255,46,76,0.3);
}
.step h4 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ============ PRICING ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-featured {
  background: linear-gradient(180deg, #fff 0%, #FFF5F1 100%);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 { margin: 0 0 14px; font-size: 20px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.amt { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
.per { color: var(--muted); font-size: 15px; }
.price-sub { color: var(--muted); margin: 0 0 22px; font-size: 14px; }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.price-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-2);
  font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--red);
  font-weight: 800;
}

/* ============ QUOTES ============ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quotes blockquote {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}
.quotes blockquote p {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
  line-height: 1.5;
}
.quotes footer {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ============ CTA ============ */
.cta {
  background: var(--grad-red);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta::before { width: 360px; height: 360px; top: -120px; left: -80px; }
.cta::after { width: 280px; height: 280px; bottom: -80px; right: -60px; }

.cta-inner { text-align: center; position: relative; }
.cta h2 { color: white; font-size: clamp(30px, 4vw, 48px); margin: 0 0 12px; }
.cta p { font-size: 18px; opacity: 0.92; margin: 0 0 28px; }

.cta .btn-primary {
  background: white;
  color: var(--red);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}
.cta .btn-primary:hover { color: var(--red-dark); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #B8B8CF;
  padding: 72px 0 28px;
}
.footer .logo { color: white; margin-bottom: 14px; display: inline-block; }
.foot-tag { color: #8C8CA7; font-size: 14px; margin: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h5 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer a {
  display: block;
  color: #B8B8CF;
  font-size: 14px;
  padding: 4px 0;
}
.footer a:hover { color: var(--red); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  color: #8C8CA7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .feature-grid, .data-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { max-width: 560px; margin: 20px auto 0; }
  .tab-panel { grid-template-columns: 1fr; padding: 32px; }
  .panel-visual { height: 200px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .feature-grid, .data-grid, .quotes, .steps { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 72px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .fc-1 { left: 10px; top: -10px; }
  .fc-2 { right: 10px; bottom: -10px; }
}
