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

:root {
  --color-primary-500: #7cbc69;
  --color-primary-700: #4a713f;
  --color-grey-100: #f2f2f2;
  --color-grey-200: #cccccc;
  --color-grey-300: #b3b3b3;
  --color-grey-400: #999999;
  --color-grey-500: #808080;
  --color-grey-600: #666666;
  --color-grey-700: #4d4d4d;
  --color-grey-800: #333333;
  --color-grey-900: #1a1a1a;
  --color-always-grey-300: #b3b3b3;
  --color-white: #ffffff;
  --color-red-500: #ef4444;
  --max-width: 1240px;
  --transition: all 0.2s ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--color-grey-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== TYPOGRAPHY ===== */

.text-heading1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
}
.text-heading2 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
}
.text-heading3 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}
.text-heading4 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
}
.text-heading4-bold {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
}
.text-heading5 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.text-heading6 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}
.text-body1 {
  font-size: 18px;
  line-height: 1.7;
}
.text-body2 {
  font-size: 16px;
  line-height: 1.7;
}
.text-body3 {
  font-size: 14px;
  line-height: 1.6;
}
.text-body4 {
  font-size: 12px;
  line-height: 1.6;
}
.text-overline3 {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

/* ===== NOTIFICATION BAR ===== */

.notification-bar {
  width: 100%;
  background: var(--color-primary-500);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.notification-bar strong {
  font-weight: 700;
}
.notification-bar em {
  font-style: italic;
  font-weight: 600;
}

/* ===== HEADER ===== */

.site-header {
  width: 100%;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1280px) {
  .site-header {
    padding: 0 24px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: var(--max-width);
  width: 100%;
  background: transparent;
  padding: 0;
  gap: 8px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo img {
  height: 40px;
  width: auto;
}

@media (max-width: 430px) {
  .logo img {
    height: 30px;
    width: auto;
  }
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 48px;
  }
}

.nav-link {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--color-grey-700);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-grey-600);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.nav-link:hover {
  color: var(--color-primary-700);
}

.nav-link:hover::after {
  background: var(--color-primary-700);
  opacity: 1;
}

.nav-link.active::after {
  opacity: 1;
  background: var(--color-grey-600);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-500);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-signin:hover {
  background: var(--color-primary-700);
  color: white;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-grey-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Menu */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  font-size: 24px;
  font-weight: 600;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-grey-700);
  line-height: 1;
}

/* ===== FOOTER ===== */

.site-footer {
  background: var(--color-grey-800);
  color: white;
  padding: 55px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-inner {
  max-width: var(--max-width);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 264px auto;
    gap: 150px;
  }
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-always-grey-300);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
  }
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--color-always-grey-300);
  line-height: 1.6;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-copyright {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-copyright span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--color-always-grey-300);
}

.footer-disclaimer {
  max-width: var(--max-width);
  width: 100%;
  margin-top: 32px;
  font-size: 12px;
  color: var(--color-always-grey-300);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary-500);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-primary-700);
  color: white;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-primary-500);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--color-primary-500);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--color-primary-500);
  color: white;
}

/* ===== HOME PAGE ===== */

.home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 128px;
}

.home-hero-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.get-to-know {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get-to-know-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: var(--color-grey-900);
}

.get-to-know-title strong {
  font-weight: 700;
}

.get-to-know-desc {
  font-size: 18px;
  color: var(--color-grey-700);
  text-align: center;
  max-width: 590px;
  margin-top: 8px;
  line-height: 1.7;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 72px;
}

@media (min-width: 1024px) {
  .feature-cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary-500);
}

.feature-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-grey-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  color: var(--color-grey-600);
  line-height: 1.6;
}

/* ===== HOME HERO CONTENT ===== */

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.home-hero {
  background: #ffffff;
}

@keyframes orb-drift-left {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
  }
  25% {
    transform: translate(48px, 32px) scale(1.05) rotate(5deg);
    border-radius: 52% 48% 44% 56% / 60% 40% 58% 42%;
  }
  50% {
    transform: translate(20px, 60px) scale(1.02) rotate(-3deg);
    border-radius: 44% 56% 62% 38% / 52% 48% 56% 44%;
  }
  75% {
    transform: translate(-32px, 36px) scale(0.97) rotate(7deg);
    border-radius: 58% 42% 48% 52% / 44% 60% 40% 56%;
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
  }
}

@keyframes orb-drift-right {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 48% 52% 38% 62% / 56% 44% 60% 40%;
  }
  25% {
    transform: translate(-40px, 28px) scale(1.06) rotate(-6deg);
    border-radius: 60% 40% 52% 48% / 42% 58% 46% 54%;
  }
  50% {
    transform: translate(-16px, -40px) scale(0.96) rotate(4deg);
    border-radius: 40% 60% 56% 44% / 54% 46% 48% 52%;
  }
  75% {
    transform: translate(30px, -20px) scale(1.03) rotate(-8deg);
    border-radius: 54% 46% 44% 56% / 60% 40% 56% 44%;
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 48% 52% 38% 62% / 56% 44% 60% 40%;
  }
}

.hero-gradient-left {
  position: absolute;
  top: -220px;
  left: -280px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 188, 105, 0.28) 0%,
    rgba(124, 188, 105, 0.1) 50%,
    transparent 75%
  );
  border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
  pointer-events: none;
  z-index: 0;
  visibility: hidden;
  animation: orb-drift-left 14s ease-in-out infinite;
}

.hero-gradient-right {
  position: absolute;
  top: -40px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 188, 105, 0.22) 0%,
    rgba(176, 215, 165, 0.1) 55%,
    transparent 80%
  );
  border-radius: 48% 52% 38% 62% / 56% 44% 60% 40%;
  pointer-events: none;
  z-index: 0;
  visibility: hidden;
  animation: orb-drift-right 10s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-gradient-left,
  .hero-gradient-right {
    visibility: visible;
  }
}

.home-hero > *:not(.hero-gradient-left):not(.hero-gradient-right) {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: #e8f5e4;
  border: 1px solid #b8dcca;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-700);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.05s;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-700);
  flex-shrink: 0;
  animation: hero-pulse 2s infinite;
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--color-grey-900);
  max-width: 760px;
  margin-bottom: 20px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.15s;
}

.hero-title em {
  font-style: normal;
  color: var(--color-primary-500);
  font-weight: 700;
}

.hero-sub {
  font-size: 17px;
  color: var(--color-grey-600);
  text-align: center;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.25s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.35s;
}

.hero-btn-primary {
  padding: 14px 28px;
  background: var(--color-primary-500);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.hero-btn-primary:hover {
  background: var(--color-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74, 113, 63, 0.2);
}

.hero-btn-outline {
  padding: 14px 28px;
  background: transparent;
  color: var(--color-grey-800);
  border: 1.5px solid var(--color-grey-200);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.hero-btn-outline:hover {
  border-color: var(--color-primary-700);
  color: var(--color-primary-700);
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.45s;
}

.trust-item {
  font-size: 11px;
  color: var(--color-grey-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-icon {
  font-size: 14px;
}

.hero-disclaimer {
  font-size: 11.5px;
  color: var(--color-grey-500);
  text-align: center;
  max-width: 540px;
  line-height: 1.6;
  padding: 10px 18px;
  background: #f5f4f0;
  border: 1px solid var(--color-grey-200);
  border-radius: 10px;
  animation: hero-fade-up 0.6s ease both;
  animation-delay: 0.55s;
}

/* ===== WHO IT'S FOR ===== */

.who-its-for {
  padding: 96px 24px 80px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.who-its-for-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.who-its-for-header {
  text-align: center;
  margin-bottom: 52px;
}

.who-its-for-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.who-its-for-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-grey-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.who-its-for-sub {
  font-size: 16px;
  color: var(--color-grey-600);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.who-its-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .who-its-for-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.wif-card {
  background: #ffffff;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.wif-card:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: var(--color-primary-500);
}

.wif-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.wif-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-bottom: 10px;
}

.wif-card-body {
  font-size: 14px;
  color: var(--color-grey-600);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.wif-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}

.wif-card-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-grey-600);
  background: var(--color-grey-100);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ===== PRODUCT CAROUSEL ===== */

.product-carousel-section {
  padding: 96px 24px 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-grey-800);
  overflow: hidden;
}

.product-carousel-header {
  text-align: center;
  margin-bottom: 52px;
  animation: hero-fade-up 0.6s ease both;
}

.product-carousel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.product-carousel-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.product-carousel-sub {
  font-size: 16px;
  color: var(--color-grey-300);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.product-carousel-track-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.product-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.product-carousel-slide {
  flex: 0 0 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.product-carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.07);
  display: block;
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-carousel-slide.is-active img {
  transform: scale(1.015);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.13),
    0 48px 100px rgba(0, 0, 0, 0.09);
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color-grey-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey-700);
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.carousel-arrow:hover {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 113, 63, 0.25);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow-prev {
  left: -22px;
}

.carousel-arrow-next {
  right: -22px;
}

@media (max-width: 640px) {
  .carousel-arrow-prev {
    left: 6px;
  }
  .carousel-arrow-next {
    right: 6px;
  }
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-grey-300);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--color-primary-500);
  width: 24px;
  border-radius: 4px;
}

/* CTA below carousel */
.product-carousel-cta {
  margin-top: 44px;
}

/* Carousel lightbox */
.product-carousel-slide img {
  cursor: zoom-in;
}

.carousel-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.carousel-lightbox.open {
  display: flex;
}

.carousel-lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  animation: lightbox-in 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* ===== OUR PLATFORM PAGE ===== */

.platform-hero {
  position: relative;
  padding: 180px 24px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-hero-inner {
  max-width: var(--max-width);
  width: 100%;
  position: relative;
}

.platform-gradient-left {
  position: absolute;
  top: -280px;
  left: -320px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 188, 105, 0.25) 0%,
    rgba(124, 188, 105, 0.08) 55%,
    transparent 78%
  );
  border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
  pointer-events: none;
  z-index: -1;
  visibility: hidden;
  animation: orb-drift-left 14s ease-in-out infinite;
}

.platform-gradient-right {
  position: absolute;
  top: 0;
  right: -64px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 188, 105, 0.2) 0%,
    rgba(176, 215, 165, 0.08) 55%,
    transparent 80%
  );
  border-radius: 48% 52% 38% 62% / 56% 44% 60% 40%;
  pointer-events: none;
  z-index: -1;
  visibility: hidden;
  animation: orb-drift-right 10s ease-in-out infinite;
}

@media (min-width: 768px) {
  .platform-gradient-left,
  .platform-gradient-right {
    visibility: visible;
  }
}

.platform-title {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  text-align: center;
  color: var(--color-grey-800);
  line-height: 1.1;
}

.platform-desc {
  font-size: 18px;
  color: var(--color-grey-700);
  text-align: center;
  max-width: 910px;
  margin: 24px auto 0;
  line-height: 1.7;
}

.platform-mid-desc {
  font-size: 24px;
  font-weight: 300;
  color: var(--color-grey-900);
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  margin-top: 0;
}

.platform-features-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .platform-features-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .platform-features-row.centered {
    justify-content: center;
    gap: 64px;
  }
}

.icon-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

.icon-text-box .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-primary-500);
}

.icon-text-box .icon-wrap svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-text-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-grey-900);
  margin-bottom: 8px;
}

.icon-text-box p {
  font-size: 15px;
  color: var(--color-grey-600);
  line-height: 1.6;
}

/* Platform Capabilities Dark Section */
.platform-capabilities {
  background: var(--color-grey-800);
  color: white;
  padding: 100px 24px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-capabilities-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.capabilities-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .capabilities-top {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.capabilities-top .logo-grey {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.capabilities-top h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
  line-height: 1.25;
}

.capabilities-top p {
  font-size: 14px;
  color: white;
  line-height: 1.8;
  margin-bottom: 16px;
}

.capabilities-img {
  width: 100%;
  height: auto;
  margin-top: 32px;
}

.capabilities-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .capabilities-main {
    grid-template-columns: 1fr 1fr;
    gap: 144px;
  }
}

.dna-insights-box {
  border: 1px solid var(--color-grey-600);
  border-radius: 10px;
  padding: 12px;
}

.dna-insights-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.dna-tab {
  height: 56px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
  transition: var(--transition);
  background: linear-gradient(
    148.35deg,
    rgba(104, 106, 120, 0.4) 24.57%,
    rgba(192, 196, 222, 0.4) 99.99%
  );
}

.dna-tab .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dna-tab .tab-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dna-tab span {
  font-size: 15px;
  color: white;
  font-weight: 500;
}

.with-helixa h3 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.circle-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  padding: 12px 0;
}

.circle-check-item .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.circle-check-item .check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-primary-500);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circle-check-item p {
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

.capabilities-mission {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
}

.capabilities-mission p {
  font-size: 14px;
  color: white;
  line-height: 1.7;
}

/* Ready to Transform */
.ready-to-transform {
  position: relative;
  padding: 128px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.ready-to-transform-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.ready-to-transform-inner {
  text-align: center;
  max-width: 910px;
}

.ready-to-transform-inner h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--color-grey-800);
  line-height: 1.2;
  margin-bottom: 24px;
}

.ready-to-transform-inner h3 strong {
  font-weight: 800;
}

.ready-to-transform-inner p {
  font-size: 18px;
  color: var(--color-grey-700);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== ABOUT US PAGE ===== */

.about-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 24px 0;
  position: relative;
}

.about-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  opacity: 0.6;
}

.about-intro {
  max-width: 1240px;
  width: 100%;
}

.about-intro-title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-grey-800);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-intro-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro-body p {
  font-size: 16px;
  color: var(--color-grey-800);
  line-height: 1.75;
}

.about-intro-img {
  width: 100%;
  height: auto;
  margin-top: 48px;
  margin-bottom: 192px;
}

.about-story {
  max-width: 1240px;
  width: 100%;
  margin-bottom: 192px;
  position: relative;
}

.about-story-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-grey-800);
  margin-bottom: 24px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-story-body p {
  font-size: 18px;
  color: var(--color-grey-800);
  line-height: 1.75;
}

.about-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 925px;
  width: 100%;
  margin-bottom: 128px;
  position: relative;
  text-align: center;
}

.about-why-gradient-left {
  position: absolute;
  top: -600px;
  left: -320px;
  width: 1208px;
  height: 1208px;
  z-index: -1;
  pointer-events: none;
  display: none;
}

.about-why-gradient-right {
  position: absolute;
  top: -24px;
  right: -64px;
  width: 333px;
  height: 333px;
  z-index: -1;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .about-why-gradient-left,
  .about-why-gradient-right {
    display: block;
  }
}

.about-why-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-grey-800);
  margin-bottom: 16px;
}

.about-why-desc {
  font-size: 16px;
  color: var(--color-grey-800);
  line-height: 1.75;
}

.about-mission-section {
  max-width: 1240px;
  width: 100%;
  margin-bottom: 128px;
}

.mission-grid-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .mission-grid-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.about-mission-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-grey-800);
  margin-bottom: 16px;
}

.about-mission-desc {
  font-size: 16px;
  color: var(--color-grey-800);
  line-height: 1.75;
}

.about-mission-img {
  width: 100%;
  max-width: 568px;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.about-values-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin-bottom: 128px;
  padding: 0 24px;
}

.about-values-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-grey-800);
  margin-bottom: 80px;
}

.about-values-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.values-flex-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .values-flex-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .values-flex-centered {
    justify-content: center;
    gap: 64px;
  }
}

.about-value-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 350px;
  max-width: 100%;
  gap: 16px;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-grey-800);
}

.about-value-box p {
  font-size: 14px;
  color: var(--color-grey-700);
  line-height: 1.7;
}

.about-team-section {
  max-width: 1240px;
  width: 100%;
  border-top: 1px solid var(--color-grey-200);
  padding-top: 16px;
  margin-bottom: 192px;
}

.about-team-label {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-grey-800);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-team-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-grey-800);
  margin-bottom: 64px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 640px) {
  .about-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-team-grid + .about-team-grid {
  margin-top: 48px;
}

.about-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-avatar-btn {
  border-radius: 50%;
  outline: 2px solid var(--color-grey-200);
  outline-offset: 4px;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: outline-color 0.3s;
  display: block;
  padding: 0;
}

.about-avatar-btn:hover,
.about-avatar-btn:focus-visible {
  outline-color: var(--color-primary-500);
}

.about-avatar-btn img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s;
}

.about-avatar-btn:hover img {
  transform: scale(1.05);
}

.about-name-btn {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-grey-800);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.about-name-btn:hover {
  text-decoration: underline;
}

.about-role {
  font-size: 16px;
  color: var(--color-grey-500);
  line-height: 1.5;
  margin-top: 4px;
}

/* Bio Modal */
.about-modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.about-modal-box {
  background: white;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.about-modal-header {
  padding: 24px 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-modal-header img {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.about-modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-grey-800);
  margin-bottom: 4px;
}

.about-modal-header p {
  font-size: 16px;
  color: var(--color-grey-500);
}

.about-modal-body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-modal-body p {
  font-size: 16px;
  color: var(--color-grey-700);
  line-height: 1.75;
}

.about-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-grey-400);
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
}

.about-modal-close:hover {
  color: var(--color-grey-800);
}

/* ===== EARLY ACCESS MODAL ===== */

.early-access-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-500);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.early-access-btn:hover {
  background: var(--color-primary-700);
}

@media (max-width: 430px) {
  .early-access-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

.early-access-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.early-access-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.early-access-box {
  background: white;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  position: relative;
  padding: 40px 32px 32px;
}

@media (max-width: 430px) {
  .early-access-box {
    padding: 20px;
  }
}

.early-access-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-grey-500);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
}

.early-access-close:hover {
  color: var(--color-grey-900);
}

.early-access-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-bottom: 8px;
}

.early-access-box p {
  font-size: 14px;
  color: var(--color-grey-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.early-access-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-grey-900);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.early-access-form input[type="email"]:focus {
  border-color: var(--color-primary-500);
}

.early-access-form input[type="email"]::placeholder {
  color: var(--color-grey-400);
}

.early-access-submit {
  width: 100%;
  padding: 12px 20px;
  background: var(--color-primary-500);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.early-access-submit:hover:not(:disabled) {
  background: var(--color-primary-700);
}

.early-access-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.early-access-message {
  font-size: 14px;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  display: none;
}

.early-access-message.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
}

.early-access-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
}

/* ===== BLOG PAGE ===== */

.blog-page {
  padding: 112px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-page-inner {
  max-width: var(--max-width);
  width: 100%;
}

.blog-page-inner h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-grey-800);
  margin-bottom: 24px;
}

.blog-page-inner .blog-desc {
  font-size: 16px;
  color: var(--color-grey-800);
  max-width: 924px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 0 1px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

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

.blog-card-img {
  width: 100%;
  height: 192px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.blog-card-content {
  padding: 24px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #e8f5e3;
  color: var(--color-primary-700);
  white-space: nowrap;
}

.blog-card-readtime {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-grey-600);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-card-readtime svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-grey-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.blog-card-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-grey-800);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-content h3 {
  color: var(--color-primary-700);
}

.blog-card-content p {
  font-size: 14px;
  color: var(--color-grey-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-grey-600);
}

.blog-card-date svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-grey-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.blog-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  background: var(--color-grey-800);
  color: white;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.blog-card-arrow:hover {
  background: var(--color-grey-700);
}

.blog-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== BLOG POST PAGE ===== */

.blog-post {
  padding: 112px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-post-inner {
  max-width: 860px;
  width: 100%;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-500);
  margin-bottom: 32px;
  transition: var(--transition);
}

.back-to-blog:hover {
  color: var(--color-primary-700);
}

.back-to-blog svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-post-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-500);
  margin-bottom: 12px;
}

.blog-post-inner h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-grey-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-post-inner .post-desc {
  font-size: 18px;
  color: var(--color-grey-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-grey-400);
  margin-bottom: 32px;
}

.blog-post-meta span::before {
  content: "·";
  margin-right: 16px;
}

.blog-post-meta span:first-child::before {
  content: "";
  margin-right: 0;
}

.blog-post-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 48px;
}

.blog-post-content {
  font-size: 16px;
  color: var(--color-grey-800);
  line-height: 1.8;
}

.blog-post-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-grey-900);
  margin: 32px 0 16px;
  line-height: 1.3;
}

.blog-post-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-grey-900);
  margin: 24px 0 12px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content strong {
  font-weight: 700;
  color: var(--color-grey-900);
}
.blog-post-content em {
  font-style: italic;
}

/* ===== PRICING ===== */

.pricing-section {
  padding: 96px 24px 100px;
  background: var(--color-grey-800);
  display: flex;
  justify-content: center;
}

.pricing-inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pricing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 16px;
  color: var(--color-grey-300);
  max-width: 520px;
  line-height: 1.65;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
}

/* Card */
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.pricing-card.revealed {
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.pricing-card:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: var(--color-primary-500);
}

.pricing-card--highlighted {
  border-color: var(--color-primary-500);
  box-shadow:
    0 0 0 1px var(--color-primary-500),
    0 8px 32px rgba(74, 113, 63, 0.12);
}

.pricing-card--highlighted:hover {
  box-shadow:
    0 0 0 1px var(--color-primary-500),
    0 12px 40px rgba(74, 113, 63, 0.18);
  transform: translateY(-4px);
  border-color: var(--color-primary-500);
}

/* Badge */
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 4px 12px;
  background: var(--color-grey-100);
  color: var(--color-grey-600);
  margin-bottom: 4px;
}

.pricing-badge--featured {
  background: #e8f5e3;
  color: var(--color-primary-700);
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-plan-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-grey-900);
  margin-top: 6px;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 14px;
}

.pricing-amount {
  font-size: 52px;
  font-weight: 600;
  color: var(--color-grey-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--color-grey-500);
  font-weight: 400;
}

.pricing-monthly-equiv {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-grey-500);
}

.pricing-monthly-equiv--muted {
  color: var(--color-grey-400);
}

.pricing-savings {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-700);
}

.pricing-savings--spacer {
  color: transparent;
  user-select: none;
}

.pricing-desc {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-grey-600);
  line-height: 1.65;
  max-width: 280px;
}

/* Features list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-grey-700);
  line-height: 1.55;
}

.pricing-check {
  color: var(--color-primary-500);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer */
.pricing-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-cta {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  border: none;
}

.pricing-cta--primary {
  background: var(--color-primary-700);
  color: #fff;
}

.pricing-cta--primary:hover {
  background: var(--color-primary-500);
  box-shadow: 0 4px 16px rgba(74, 113, 63, 0.25);
}

.pricing-cta--outline {
  background: #fff;
  color: var(--color-grey-900);
  border: 1.5px solid var(--color-grey-300);
}

.pricing-cta--outline:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-700);
}

.pricing-fine-print {
  font-size: 11.5px;
  color: var(--color-grey-400);
  text-align: center;
  line-height: 1.5;
}

/* Why one price */
.pricing-why {
  font-size: 13px;
  color: var(--color-grey-300);
  line-height: 1.7;
  max-width: 680px;
  text-align: center;
}

.pricing-why strong {
  color: #ffffff;
  font-weight: 700;
}

/* Clinic row */
.pricing-clinic {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 680px;
}

.pricing-clinic-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 188, 105, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-clinic-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-clinic-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.pricing-clinic-text {
  font-size: 13px;
  color: var(--color-grey-300);
  line-height: 1.65;
}

.pricing-clinic-link {
  color: var(--color-primary-500);
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.pricing-clinic-link:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 64px 16px 64px;
  }
  .pricing-amount {
    font-size: 42px;
  }
  .pricing-clinic {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== HOW IT WORKS ===== */

.how-it-works {
  padding: 96px 24px 100px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.how-it-works-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.how-it-works-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.how-it-works-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.how-it-works-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-grey-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .how-it-works-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.hiw-step {
  background: #ffffff;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hiw-step.revealed {
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hiw-step:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: var(--color-primary-500);
}

.hiw-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f5e3;
  color: var(--color-primary-700);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hiw-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-bottom: 12px;
}

.hiw-step-body {
  font-size: 14px;
  color: var(--color-grey-600);
  line-height: 1.7;
}

/* Quote */
.hiw-quote {
  max-width: 680px;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

.hiw-quote-text {
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--color-grey-800);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 16px;
}

.hiw-quote-attr {
  font-size: 13px;
  color: var(--color-grey-500);
  font-style: normal;
}

/* ===== FINAL CTA ===== */

.final-cta {
  background: #ffffff;
  padding: 96px 24px;
  display: flex;
  justify-content: center;
}

.final-cta-inner {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.final-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-grey-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.final-cta-sub {
  font-size: 16px;
  color: var(--color-grey-600);
  line-height: 1.65;
  max-width: 460px;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .final-cta {
    padding: 64px 24px;
  }
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-actions .hero-btn-primary,
  .final-cta-actions .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ===== CHATBOT DEMO SECTION ===== */

.chatbot-demo-section {
  background: #ffffff;
  padding: 100px 24px 100px;
}

.chatbot-demo-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.chatbot-demo-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chatbot-demo-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-700);
  background: rgba(124, 188, 105, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
}

.chatbot-demo-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-grey-900);
}

.chatbot-demo-sub {
  font-size: 17px;
  color: var(--color-grey-600);
  max-width: 480px;
  line-height: 1.65;
}

.chatbot-demo-widget {
  width: 100%;
  background: linear-gradient(to top left, #f2f8f0 0%, #ffffff 65%);
  border-radius: 16px;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chatbot-demo-topbar {
  background: #f2f8f0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ddecd9;
}

.chatbot-demo-topbar-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.chatbot-demo-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chatbot-demo-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-700);
  line-height: 1.4;
}

.chatbot-demo-tagline {
  font-size: 12px;
  color: var(--color-primary-700);
  opacity: 0.75;
  line-height: 1.4;
}

/* Messages area */
.chatbot-demo-messages {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 180px;
  max-height: 460px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-grey-200) transparent;
}

.chatbot-demo-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-demo-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-demo-messages::-webkit-scrollbar-thumb {
  background: var(--color-grey-200);
  border-radius: 99px;
}

.chatbot-demo-messages::-webkit-scrollbar-thumb:hover {
  background: var(--color-grey-300);
}

/* Message row layout — avatar left for AI, avatar right for user */
.chatbot-demo-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-demo-row--user {
  flex-direction: row-reverse;
}

/* Round avatar */
.chatbot-demo-avatar-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-demo-avatar-wrap--ai {
  background: #f2f8f0;
}

.chatbot-demo-avatar-wrap--user {
  background: var(--color-primary-500);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* Message group: meta + bubble */
.chatbot-demo-msg-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.chatbot-demo-row--user .chatbot-demo-msg-group {
  align-items: flex-end;
}

.chatbot-demo-msg-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-grey-600);
}

.chatbot-demo-row--user .chatbot-demo-msg-meta {
  flex-direction: row-reverse;
}

.chatbot-demo-sender {
  font-weight: 500;
}

.chatbot-demo-time {
  font-size: 11px;
  color: var(--color-grey-400);
}

/* Bubble */
.chatbot-demo-bubble {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 80%;
}

.chatbot-demo-bubble--ai {
  background: var(--color-grey-100);
  color: var(--color-grey-900);
}

.chatbot-demo-bubble--user {
  background: var(--color-primary-500);
  color: #fff;
}

.chatbot-demo-bubble p + p {
  margin-top: 8px;
}

.chatbot-demo-note-divider {
  border: none;
  border-top: 1px dashed var(--color-grey-300);
  margin: 10px 0 8px;
}

.chatbot-demo-helixa-note {
  font-style: italic;
  color: var(--color-primary-500);
  margin-top: 0;
}

.chatbot-demo-inline-disclaimer {
  font-family:
    ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  color: var(--color-grey-400);
  margin-top: 6px;
}

.chatbot-demo-free-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-grey-400);
}

/* New message slide-in */
@keyframes chatMsgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-demo-row,
.chatbot-demo-typing-row {
  animation: chatMsgIn 0.22s ease-out both;
}

/* Typing indicator — matches genpath TypingIndicator */
.chatbot-demo-typing-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-demo-typing-bubble {
  background: var(--color-grey-100);
  border-radius: 10px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  width: 50px;
  gap: 4px;
}

.chatbot-demo-typing-bubble span {
  width: 6px;
  height: 6px;
  background: var(--color-grey-500);
  border-radius: 50%;
  display: inline-block;
  animation: chatDotBounce 0.6s ease-in-out infinite;
}

.chatbot-demo-typing-bubble span:nth-child(2) {
  animation-delay: 0.15s;
}
.chatbot-demo-typing-bubble span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatDotBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

.chatbot-demo-suggestions {
  padding: 0 20px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-demo-suggestion {
  background: none;
  border: 1.5px solid var(--color-grey-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--color-grey-700);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
  font-family: inherit;
  line-height: 1.4;
  text-align: left;
}

.chatbot-demo-suggestion:hover {
  border-color: var(--color-primary-500);
  background: rgba(124, 188, 105, 0.07);
  color: var(--color-primary-700);
}

.chatbot-demo-counter {
  padding: 4px 20px 8px;
  font-size: 12px;
  color: var(--color-grey-400);
  text-align: center;
}

.chatbot-demo-input-row {
  margin: 0 20px 0;
  padding: 12px 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
}

.chatbot-demo-input-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--color-grey-300);
  border-radius: 8px;
  padding: 4px 4px 4px 12px;
  opacity: 0.5;
  cursor: not-allowed;
}

.chatbot-demo-input {
  flex: 1;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-grey-900);
  outline: none;
  cursor: not-allowed;
  resize: none;
  line-height: 1.5;
  height: 44px;
  max-height: 44px;
  overflow: hidden;
}

.chatbot-demo-input::placeholder {
  color: var(--color-grey-400);
}

.chatbot-demo-send {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-grey-400);
  pointer-events: none;
  transition: color 0.15s;
}

.chatbot-demo-send svg {
  fill: currentColor;
}

.chatbot-demo-disclaimer {
  margin: 0 20px 20px;
  background: #fff;
  border: 1px solid var(--color-grey-100);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11.5px;
  color: var(--color-grey-500);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.chatbot-demo-disclaimer-icon {
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 767px) {
  .how-it-works {
    padding: 64px 16px 64px;
  }
  .how-it-works-inner {
    gap: 40px;
  }
  .hiw-quote-text {
    font-size: 17px;
  }

  .chatbot-demo-section {
    padding: 64px 16px 64px;
  }
  .chatbot-demo-title {
    font-size: 28px;
  }
  .chatbot-demo-suggestion {
    font-size: 12px;
    padding: 7px 13px;
  }
  .chatbot-demo-messages {
    max-height: 360px;
  }

  .home-hero {
    padding: 64px 24px 80px;
  }
  .platform-hero {
    padding: 80px 24px 80px;
  }
  .about-hero {
    padding: 64px 24px 0;
  }
  .blog-page {
    padding: 80px 24px 60px;
  }
  .blog-post {
    padding: 80px 24px 60px;
  }
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-64 {
  margin-top: 64px;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

.page-main {
  flex: 1;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

[data-reveal] {
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 1.1s;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal][data-reveal-late] {
  transition-duration: 1.4s;
}

[data-reveal="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}

[data-reveal="fade-in"] {
  opacity: 0;
}

[data-reveal="fade-left"] {
  opacity: 0;
  transform: translateX(-48px);
}

[data-reveal="fade-right"] {
  opacity: 0;
  transform: translateX(48px);
}

[data-reveal="scale-up"] {
  opacity: 0;
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
