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

/* =========================================
   Reset & Base
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f9fafb;
  /* bg-gray-50 */
  color: #111827;
  /* text-gray-900 */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* =========================================
   Utilities
   ========================================= */
.container {
  width: 100%;
  max-width: 80rem;
  /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
  inset: 0;
}

.fixed {
  position: fixed;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

/* Margins & Paddings (Mobile First) */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.25rem;
}

.p-8 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-20 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 767px) {
  .py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.py-24 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.25rem;
}

.mb-8 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 1.5rem;
}

/* Reduced from 2rem */
.mt-12 {
  margin-top: 2.5rem;
}

/* Reduced from 3rem */
.mt-16 {
  margin-top: 3rem;
}

/* Reduced from 4rem */

/* Utilities helpers */
.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.text-white {
  color: white;
}

.bg-rose-600 {
  background-color: #e11d48;
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9fafb;
}


/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .md-hidden {
    display: none !important;
  }

  .md-block {
    display: block !important;
  }

  /* Typography */
  .md-text-3xl {
    font-size: 1.875rem;
  }

  .md-text-4xl {
    font-size: 2.25rem;
  }

  .md-text-5xl {
    font-size: 3rem;
  }

  .md-text-6xl {
    font-size: 3.75rem;
  }

  /* Spacing */
  .md-p-10 {
    padding: 2.5rem;
  }

  .md-p-12 {
    padding: 3rem;
  }

  .md-gap-20 {
    gap: 5rem;
  }

  /* Flex */
  .md-flex-row {
    flex-direction: row;
  }

  .md-flex-row-reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Typography Helpers */
.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.25rem;
  /* Reduced from 1.5rem for mobile */
}

.text-3xl {
  font-size: 1.5rem;
  /* Reduced from 1.875rem */
}

.text-4xl {
  font-size: 1.875rem;
  /* Reduced from 2.25rem */
}

@media (min-width: 768px) {
  .text-2xl {
    font-size: 1.5rem;
  }

  .text-3xl {
    font-size: 1.875rem;
  }

  .text-4xl {
    font-size: 2.25rem;
  }
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-900 {
  color: #111827;
}

.text-blue-600 {
  color: #2563eb;
}

.text-rose-600 {
  color: #e11d48;
}

.text-gradient-brand {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3b82f6;
  /* Fallback */
}

/* =========================================
   Components
   ========================================= */

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0.75rem 0;
  background-color: rgba(251, 251, 253, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 640px) {
  .brand-link {
    gap: 16px;
  }
}

.brand-logo {
  height: 2rem;
  width: auto;
}

@media (min-width: 640px) {
  .brand-logo {
    height: 2.5rem;
  }
}

.brand-title {
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111827;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .brand-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .brand-title {
    font-size: 1.5rem;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
}

.nav-link:hover {
  color: #111827;
}

.mobile-menu-btn {
  padding: 0.75rem;
  margin-right: -0.5rem;
  /* Align right visual edge */
  border-radius: 0.5rem;
  color: #374151;
}

.mobile-menu-btn:active {
  background-color: #f3f4f6;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu.menu-open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0;
  /* Handled by links */
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  color: #1f2937;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:active {
  background-color: #f9fafb;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #e11d48;
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  transition: all 0.18s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: #be123c;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.18s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-w-full {
  width: 100%;
}

@media (min-width: 640px) {
  .btn-w-auto {
    width: auto;
  }
}

/* Hero */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding-top: 6rem;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 7rem;
  }
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(255, 255, 255, 0.12));
} */

.kintone-logo-extra {
  width: 240px;
  max-width: 80%;
  /* Constrain specifically for mobile */
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .kintone-logo-extra {
    width: 300px;
  }
}

.hero-badges-wrapper {
  margin-bottom: 1.5rem;
}

.badge-dark {
  display: inline-block;
  background-color: #111827;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 5px 14px;
  /* Reduced padding mobile */
  border-radius: 9999px;
  font-size: 13px;
  /* Reduced size mobile */
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

@media (min-width: 640px) {
  .badge-dark {
    padding: 6px 20px;
    font-size: 16px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.hero-title {
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: #111827;
  font-size: 28px;
  /* Adjusted for smallest screens */
}

@media (min-width: 375px) {
  .hero-title {
    font-size: 32px;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 58px;
  }
}

.hero-desc {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.9);
  line-height: 1.625;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

/* Cards */
.bento-card {
  background-color: white;
  border-radius: 20px;
  /* Smaller radius on mobile */
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  /* Reduced padding */
  overflow: hidden;
}

@media (min-width: 768px) {
  .bento-card {
    border-radius: 28px;
    padding: 2rem;
  }
}

/* Pain Section */
.pain-card-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pain-card-desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* Goals Section (Case Cards) */
.case-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #f3f4f6;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.case-card-img-wrap {
  height: 12rem;
  background-color: #f3f4f6;
  overflow: hidden;
}

.case-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-img {
  transform: scale(1.05);
}

.case-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .case-card-body {
    padding: 2rem;
  }
}

.case-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

/* Service Card (Horizontal) */
.service-horiz-card {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-horiz-card {
    flex-direction: row;
  }
}

.service-horiz-card.reverse {
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-horiz-card.reverse {
    flex-direction: row-reverse;
  }
}

.service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-card-content {
    padding: 3rem;
    width: 50%;
  }
}

.service-card-img-wrap {
  background-color: #f3f4f6;
  min-height: 300px;
  position: relative;
}

@media (min-width: 768px) {
  .service-card-img-wrap {
    width: 50%;
  }
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Column Card (used in Case Studies & Recommended Columns) */
.column-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.column-thumb {
  position: relative;
  width: 100%;
  /* Aspect ratio approx 5:3 */
  overflow: hidden;
  background-color: #f3f4f6;
}

.column-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  background-color: #f3f4f6;
}

.column-card:hover .column-thumb-img {
  transform: scale(1.05);
}

.column-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.column-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.column-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.column-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Case study time badge */
.case-time-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  white-space: nowrap;
}

/* Theme Cards (minimal design) */
.theme-card-minimal {
  border-radius: 0.75rem;
  padding: 1.25rem;
  background-color: white;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.theme-card-minimal:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.theme-card-minimal-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.theme-card-minimal-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}


/* FAQ */
.faq-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background-color: white;
  overflow: hidden;
}

.faq-summary {
  cursor: pointer;
  padding: 1rem 1.125rem;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-body {
  padding: 0 1.125rem 1.125rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.8;
}

.faq-icon {
  font-weight: 900;
  color: #6b7280;
  width: 24px;
  text-align: center;
  transition: transform 0.2s;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

details>summary {
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

/* Columns */
.column-card {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background-color: white;
  box-shadow: 2px 8px 22px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.18s ease;
}

.column-card:hover {
  transform: translateY(-3px);
  box-shadow: 2px 14px 34px rgba(0, 0, 0, 0.10);
  border-color: rgba(59, 130, 246, 0.25);
}

.column-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.column-thumb-img {
  position: absolute;
  top: -10%;
  /* left: -10%; */
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate3d(0, var(--py, 0px), 0) scale(var(--ps, 1.06));
  will-change: transform;
  transition: transform 0.55s ease;
}

.column-card:hover .column-thumb-img {
  --ps: 1.10;
}

.column-body {
  padding: 1.125rem;
}

.column-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  background-color: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.18);
  padding: 6px 10px;
  border-radius: 9999px;
  margin-bottom: 0.625rem;
  text-align: center;
}

.column-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.column-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.8;
}

/* Forms */
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  background-color: white;
  padding: 0.75rem 0.875rem;
  outline: none;
  transition: all 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Footer */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 3rem 0;
  padding-bottom: 7rem;
  /* Mobile bottom padding */
  font-size: 0.875rem;
  border-top: 1px solid #1f2937;
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}

.footer-logo {
  height: 2rem;
  margin-bottom: 1rem;
}

.footer-heading {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-link-list li {
  margin-bottom: 0.5rem;
}

.footer-link-list a:hover {
  color: white;
}

/* Parallax Blobs */
.parallax-scope {
  position: relative;
}

.parallax-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(36px);
  opacity: 0.4;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.35), transparent 65%);
}

.blob-a {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.55), transparent 60%);
}

.blob-b {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -160px;
  background: radial-gradient(circle at 60% 40%, rgba(168, 85, 247, 0.50), transparent 62%);
}

.blob-c {
  width: 420px;
  height: 420px;
  top: 25%;
  right: 10%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.35), transparent 65%);
}

/* Achievements */
.achievement-num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1024px) {
  .achievement-num {
    font-size: 6rem;
  }

  /* lg:text-9xl approx equivalent or fit for design */
}

.achievement-label {
  font-size: 1.875rem;
  /* text-3xl */
}

@media (min-width: 768px) {
  .achievement-label {
    font-size: 2.25rem;
    /* md:text-4xl */
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade-in-up {
  opacity: 0;
}

.fade-in-up.visible {
  animation: fadeInUp 0.75s ease-out forwards;
}

.bg-white {
  background-color: #fff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}