/* 
 * Turtles Web - Premium Design System & Typography Stylesheet
 * Custom engineered for Hostinger shared hosting environment.
 */

/* --- Typography Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* --- Root Variables --- */
:root {
  /* Color Palette */
  --color-canvas: #090909;
  --color-surface-1: #141414;
  --color-surface-2: #1c1c1c;
  --color-hairline: #262626;
  --color-hairline-soft: #1a1a1a;
  --color-primary: #ffffff;
  --color-on-primary: #000000;
  --color-accent-blue: #0099ff;
  --color-ink: #ffffff;
  --color-ink-muted: #999999;
  
  /* Atmospheres Gradients */
  --gradient-magenta: linear-gradient(135deg, #d44df0 0%, #a61bc2 100%);
  --gradient-violet: linear-gradient(135deg, #6a4cf5 0%, #4426cc 100%);
  --gradient-orange: linear-gradient(135deg, #ff7a3d 0%, #e05316 100%);
  --gradient-coral: linear-gradient(135deg, #ff5577 0%, #d82449 100%);
  --gradient-dark-glow: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(9, 9, 9, 0) 70%);

  /* Border Radius */
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 10px;
  --rounded-lg: 15px;
  --rounded-xl: 20px;
  --rounded-xxl: 30px;
  --rounded-pill: 100px;
  --rounded-full: 9999px;

  /* Spacing */
  --space-hair: 1px;
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 30px;
  --space-xxl: 40px;
  --space-section: 96px;

  /* Elevation */
  --shadow-flat: none;
  --shadow-lift: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-light-edge: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-focus: 0 0 0 1px var(--color-accent-blue), 0 0 8px rgba(0, 153, 255, 0.3);
  --shadow-blue-glow: 0 0 30px rgba(0, 153, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-canvas);
  color: var(--color-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-canvas);
  overflow-x: hidden;
}

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

/* --- OpenType Features for Inter (Body Text) --- */
.font-inter {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv01" 1, "cv05" 1, "cv09" 1, "cv11" 1, "ss03" 1, "ss07" 1, "dlig" 1;
}

/* --- Display Fonts (Plus Jakarta Sans replacement for GT Walsheim) --- */
.font-display {
  font-family: 'Plus Jakarta Sans', 'Inter Tight', sans-serif;
  font-weight: 600;
  text-transform: tracking-tight;
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--color-ink);
  margin: 0;
}

h1 {
  font-size: 85px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4.25px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -1.0px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* --- Typography Classes --- */
.display-xxl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -5.5px;
}

.display-xl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 85px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4.25px;
}

.display-lg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -3.1px;
}

.display-md {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -1.0px;
}

.headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.subhead {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01px;
}

.body-lg {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv01" 1, "cv05" 1, "cv09" 1, "cv11" 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.18px;
}

.body {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv01" 1, "cv05" 1, "cv09" 1, "cv11" 1;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.30;
  letter-spacing: -0.15px;
}

.body-sm {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv01" 1, "cv05" 1, "cv09" 1, "cv11" 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.40;
  letter-spacing: -0.14px;
}

.caption {
  font-family: 'Inter', sans-serif;
  font-feature-settings: "cv01" 1, "cv05" 1, "cv09" 1, "cv11" 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.20;
  letter-spacing: -0.13px;
}

.micro {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.12px;
}

.button-type {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.14px;
}

/* --- Layout Elements --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section-padding {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

/* --- Header / Top Nav --- */
.top-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-hairline-soft);
  z-index: 1000;
}

.top-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.top-nav-logo {
  display: flex;
  align-items: center;
}

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

.top-nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.top-nav-link {
  color: var(--color-ink-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-nav-link:hover, .top-nav-link.active {
  color: var(--color-ink);
}

.top-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Toggle Hamburger */
.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-ink);
  cursor: pointer;
  z-index: 1002;
}

.hamburger-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Nav Sidebar Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  display: block;
  transition: opacity 0.4s ease;
}

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

/* Backdrop Blur Overlay */
.mobile-nav-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 9, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

/* Sidebar Drawer Panel */
.mobile-nav-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  max-width: 380px;
  height: 100%;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  padding: var(--space-xl) var(--space-lg);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1002;
}

.mobile-nav-overlay.open .mobile-nav-sidebar {
  transform: translateX(0);
}

/* Sidebar Header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.mobile-nav-logo img {
  height: 28px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--color-ink-muted);
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-full);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-close:hover {
  color: var(--color-ink);
  transform: rotate(90deg);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Sidebar Body */
.mobile-nav-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  list-style: none;
  margin-bottom: var(--space-xl);
  padding: 0;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-item a {
  font-size: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--color-ink-muted);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-item a:hover {
  color: var(--color-ink);
  transform: translateX(6px);
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.mobile-nav-actions .btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: var(--rounded-md);
}

/* Sidebar Footer */
.mobile-nav-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-footer .footer-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.mobile-nav-footer .footer-meta-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.mobile-nav-footer .footer-meta-item .value {
  font-size: 14px;
  color: var(--color-ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-footer .footer-meta-item .value:hover {
  color: var(--color-ink);
}

.mobile-nav-socials {
  display: flex;
  gap: var(--space-md);
}

.mobile-nav-socials a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-socials a:hover {
  color: var(--color-ink);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.14px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--rounded-pill);
  padding: 12px 20px;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  background-color: var(--color-surface-1);
  color: var(--color-ink);
  border-radius: var(--rounded-pill);
  padding: 12px 20px;
  border: 1px solid var(--color-hairline);
}

.btn-secondary:hover {
  background-color: var(--color-surface-2);
}

.btn-translucent {
  background-color: rgba(28, 28, 28, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-ink);
  border-radius: var(--rounded-xxl);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-translucent:hover {
  background-color: rgba(28, 28, 28, 0.6);
}

.btn-icon-circular {
  background-color: var(--color-surface-1);
  color: var(--color-ink);
  border-radius: var(--rounded-full);
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-hairline);
}

.btn-icon-circular:hover {
  background-color: var(--color-surface-2);
}

.btn-icon-circular svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Badges --- */
.turtles-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: var(--space-xl);
}

.turtles-dot-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.turtles-pulse-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  z-index: 2;
}

.turtles-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: turtles-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

h1.turtles-badge-text {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #d4d4d8 !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

@keyframes turtles-ping {
  75%, 100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* --- Scrolling Marquee --- */
.turtles-marquee-section {
  background-color: var(--color-canvas);
  border-top: 1px solid var(--color-hairline-soft);
  border-bottom: 1px solid var(--color-hairline-soft);
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.turtles-marquee-title {
  text-align: center;
  color: var(--color-ink-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.turtles-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.turtles-marquee-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--color-canvas), transparent);
  z-index: 10;
  pointer-events: none;
}

.turtles-marquee-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to left, var(--color-canvas), transparent);
  z-index: 10;
  pointer-events: none;
}

.turtles-animate-scroll {
  display: flex;
  gap: var(--space-md);
  padding: 8px var(--space-md); /* Add vertical padding to prevent pills from clipping on hover transform */
  width: max-content;
  animation: turtles-scroll 35s linear infinite;
}

.turtles-animate-scroll:hover {
  animation-play-state: paused;
}

@keyframes turtles-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.turtles-industry-badge {
  flex-shrink: 0;
  padding: 12px 24px;
  background-color: #0c0c0c;
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-pill);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.turtles-industry-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--color-surface-1);
  transform: translateY(-2px);
}

.turtles-industry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease;
}

.turtles-industry-badge:hover .turtles-industry-dot {
  background-color: var(--color-accent-blue);
}

.turtles-industry-text {
  color: var(--color-ink-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  transition: color 0.3s ease;
}

.turtles-industry-badge:hover .turtles-industry-text {
  color: var(--color-ink);
}

/* --- Bento Grid / Features --- */
.bento-section {
  position: relative;
}

.bento-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(106, 76, 245, 0.08) 0%, transparent 60%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  margin-top: var(--space-xxl);
}

.bento-card {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.bento-card-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded-md);
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.bento-card-icon svg {
  width: 22px;
  height: 22px;
}

/* Atmosphere gradient spotlight cards */
.bento-card.gradient-violet {
  background: var(--gradient-violet);
  border: none;
}
.bento-card.gradient-magenta {
  background: var(--gradient-magenta);
  border: none;
}
.bento-card.gradient-orange {
  background: var(--gradient-orange);
  border: none;
}
.bento-card.gradient-coral {
  background: var(--gradient-coral);
  border: none;
}

.bento-card.gradient-violet:hover,
.bento-card.gradient-magenta:hover,
.bento-card.gradient-orange:hover,
.bento-card.gradient-coral:hover {
  transform: scale(1.01) translateY(-2px);
}

.bento-card.gradient-card .bento-card-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card.gradient-card .bento-card-title,
.bento-card.gradient-card .bento-card-desc {
  color: var(--color-primary);
}

.bento-card-title {
  color: var(--color-ink);
}

.bento-card-desc {
  color: var(--color-ink-muted);
}

/* --- Showcase / Mockup Slider --- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.showcase-card {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--space-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.showcase-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.14px;
}

.showcase-browser {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light-edge);
}

.showcase-browser-bar {
  height: 36px;
  background-color: var(--color-surface-1);
  border-bottom: 1px solid var(--color-hairline);
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-hairline);
}

.browser-dot.red { background-color: #ff5f56; }
.browser-dot.yellow { background-color: #ffbd2e; }
.browser-dot.green { background-color: #27c93f; }

.browser-address {
  background-color: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-sm);
  font-size: 11px;
  color: var(--color-ink-muted);
  padding: 3px 20px;
  width: 40%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.1px;
}

.showcase-browser-content {
  background-color: var(--color-canvas);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Simulated screen captures within the browser */
.screen-mock {
  padding: var(--space-xl);
  text-align: center;
  width: 100%;
}

.screen-mock-title {
  font-size: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: var(--space-sm);
}

.screen-mock-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 8px;
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--rounded-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
}

/* --- Blog Section --- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.blog-card {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--space-lg);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.blog-card-meta {
  font-size: 12px;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  gap: var(--space-sm);
}

.blog-card-title {
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.blog-card-excerpt {
  color: var(--color-ink-muted);
  margin-bottom: var(--space-lg);
}

.blog-card-link {
  color: var(--color-accent-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* --- Contact Form Section --- */
.contact-section {
  position: relative;
  background-color: #0b0b0b;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-info-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--color-ink-muted);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 16px;
  color: var(--color-ink);
}

/* Form inputs styling */
.contact-form {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lift);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-md);
  color: var(--color-ink);
  padding: 12px var(--space-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-control:focus {
  border-color: var(--color-accent-blue);
  box-shadow: var(--shadow-focus);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-canvas);
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--color-hairline-soft);
  color: var(--color-ink-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
  margin-bottom: var(--space-xxl);
}

.footer-brand img {
  height: 28px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.footer-column-title {
  color: var(--color-ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-list {
  list-style: none;
}

.footer-list-item {
  margin-bottom: var(--space-sm);
}

.footer-list-item a {
  font-size: 13px;
  color: var(--color-ink-muted);
}

.footer-list-item a:hover {
  color: var(--color-ink);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-hairline-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  color: var(--color-ink-muted);
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  color: var(--color-ink);
  background-color: var(--color-surface-2);
  border-color: rgba(255,255,255,0.15);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Scroll Animations --- */
.turtles-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.turtles-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */

@media (min-width: 768px) {
  /* Bento grids */
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-col-span-2 {
    grid-column: span 2;
  }
  
  /* Showcase cards layout */
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Blog Layout */
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Contact Form Layout */
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  
  /* Footer Layout */
  .footer-top {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 810px) {
  /* Navigation Hamburger menu */
  .top-nav-menu, .top-nav-actions {
    display: none;
  }
  
  .hamburger-toggle {
    display: block;
  }
  
  /* Title font resizing */
  .display-xxl {
    font-size: 62px;
    letter-spacing: -3.1px;
  }
  
  .display-xl {
    font-size: 48px;
    letter-spacing: -2.4px;
  }
  
  .display-lg {
    font-size: 36px;
    letter-spacing: -1.8px;
  }
}

@media (max-width: 480px) {
  /* Mobile-XS Layout adjustments */
  .display-xxl {
    font-size: 42px;
    letter-spacing: -2px;
  }
  
  .display-xl {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
  
  .turtles-marquee-wrapper::before,
  .turtles-marquee-wrapper::after {
    width: 60px;
  }
  
  .bento-card {
    padding: var(--space-lg);
    min-height: 250px;
  }
}

/* --- Hero Background Animation & Glow --- */
.hero-section {
  position: relative;
  background-color: #000000 !important;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 64px);
}

/* Highly visible cinematic moving grid */
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  
  /* CRANKED VISIBILITY: 15% White so the grid heavily pops */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
  
  /* Wider fade so you see more of the grid */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  
  pointer-events: none;
  z-index: 2;
}

/* Bright multi-layered volumetric glow */
.hero-section::after {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: 1200px;
  height: 600px;
  
  /* CRANKED GLOW: Brighter white core transitioning to a premium blue gradient */
  background: radial-gradient(ellipse at 50% 30%, 
    rgba(255, 255, 255, 0.18) 0%, 
    rgba(0, 153, 255, 0.08) 35%, 
    transparent 70%);
  filter: blur(50px);
  
  pointer-events: none;
  z-index: 1;
}

/* Keep text and buttons safely on top */
.hero-section > * {
  z-index: 10 !important;
  position: relative;
}

/* =========================================================
   TURTLES BENTO SECTION REDESIGN STYLES
========================================================= */

/* --- WRAPPER & GLOW --- */
.turtles-bento-wrapper {
  position: relative;
  width: 100%;
  padding: 24px 0;
}
.turtles-bento-bg-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  filter: blur(80px); z-index: 0; pointer-events: none;
}

.turtles-bento-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  grid-auto-rows: minmax(280px, auto); width: 100%; font-family: 'Inter', sans-serif;
  position: relative; z-index: 10;
}
@media (min-width: 768px) {
  .turtles-bento-grid { grid-template-columns: repeat(3, 1fr); }
  .turtles-col-span-2 { grid-column: span 2 / span 2; }
}

/* --- SCROLL ANIMATION: PREMIUM BI-DIRECTIONAL BLUR FADE REVEAL --- */
.turtles-fade-up {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}
.turtles-fade-up.is-visible,
.turtles-fade-up.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
body.elementor-editor-active .turtles-fade-up { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }

/* --- PREMIUM CARD BASE --- */
.turtles-card {
  background: linear-gradient(145deg, #121212 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 32px; padding: 32px;
  position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; height: 100%; cursor: default;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.turtles-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none; z-index: 0;
}
.turtles-card:hover {
  transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, #18181b 0%, #0a0a0a 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255,255,255,0.1);
}
.turtles-card:hover::before { opacity: 1; }
.turtles-card > * { position: relative; z-index: 10; }

/* Typography */
.turtles-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 500; color: #ffffff; letter-spacing: -0.025em; margin: 0 0 8px 0; }
.turtles-card-desc { color: #a1a1aa; font-weight: 300; font-size: 14px; line-height: 1.625; margin: 0; }

/* --- ELEGANT BUTTON LINKS --- */
.turtles-explore-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 6px 6px 6px 22px; /* Balanced left padding and right circle padding */
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #1c1c1e !important; /* Force off-black text color */
  font-family: 'Inter', sans-serif;
  font-size: 14px; /* Slightly smaller for card contexts */
  font-weight: 500;
  letter-spacing: -0.15px;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none !important;
  width: fit-content;
  position: relative;
  z-index: 20;
}

.turtles-explore-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.turtles-explore-btn:active {
  transform: translateY(0);
}

.turtles-explore-btn svg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #212122; /* Charcoal black circle background */
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px; /* Padds the inner vector arrow to look compact and clean */
  box-sizing: border-box;
  color: #ffffff; /* White arrow */
  stroke: currentColor;
  stroke-width: 2.5px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.turtles-explore-btn:hover svg {
  background-color: #0b0b0c;
  transform: scale(1.05);
}

.turtles-explore-btn svg path {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.turtles-explore-btn:hover svg path {
  transform: translateX(1px); /* Slight shift on hover */
}

.turtles-svg { stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* =========================================================
   CARD 1: 3D BROWSER PROTOTYPE (THE MOBILE FIX)
========================================================= */
.turtles-card-1-layout { display: flex; flex-direction: column; height: 100%; position: relative; z-index: 10; }
@media (min-width: 768px) { .turtles-card-1-layout { flex-direction: row; justify-content: space-between; } }

.turtles-card-1-text { max-width: 28rem; margin-bottom: 32px; }
@media (min-width: 768px) { .turtles-card-1-text { margin-bottom: 0; } }

.turtles-mockup-window {
  width: 280px; height: 180px; background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: 12px 12px 0 0;
  box-shadow: -10px 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; pointer-events: none;
  position: relative; 
  align-self: center; 
  margin-top: 16px;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); 
  transform-origin: center bottom;
}

.turtles-card:hover .turtles-mockup-window { 
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px); 
}

@media (min-width: 768px) {
  .turtles-mockup-window {
    position: absolute; 
    bottom: -32px; 
    right: -16px; 
    margin-top: 0;
    transform-origin: bottom right;
  }
}

.turtles-mockup-sweep {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg); animation: mockSweep 4s infinite; pointer-events: none; z-index: 5;
}
@keyframes mockSweep { 0% { left: -100%; } 50%, 100% { left: 200%; } }

.turtles-mockup-header { height: 24px; background: rgba(0,0,0,0.3); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.turtles-mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.turtles-mockup-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.turtles-wire-nav { width: 30%; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.turtles-wire-hero { width: 100%; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.turtles-wire-grid { display: flex; gap: 8px; }
.turtles-wire-box { flex: 1; height: 48px; border-radius: 6px; background: rgba(255,255,255,0.03); }

/* =========================================================
   CARD 2: AI DATA LLM CORE
========================================================= */
.turtles-aeo-visual {
  margin-top: 32px; height: 120px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}
.turtles-aeo-grid {
  position: absolute; inset: 0; opacity: 0.3;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.turtles-aeo-node-center {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  animation: turtlesPulseNode 2s infinite alternate;
}
.turtles-aeo-ring {
  position: absolute; width: 80px; height: 80px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2); animation: turtlesSpinLoop 10s linear infinite;
}
@keyframes turtlesPulseNode { 0% { box-shadow: 0 0 10px rgba(255,255,255,0.05); } 100% { box-shadow: 0 0 25px rgba(255,255,255,0.4); } }
@keyframes turtlesSpinLoop { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* =========================================================
   CARD 3: SEO BAR CHART 
========================================================= */
.turtles-bar-container { margin-top: 32px; display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.turtles-bar {
  flex: 1; background-color: rgba(255, 255, 255, 0.1); border-top-left-radius: 2px; border-top-right-radius: 2px;
  transition: background-color 0.5s ease; transform-origin: bottom; animation: turtlesBarPulse 3s ease-in-out infinite;
}
@keyframes turtlesBarPulse { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.15); } }
.turtles-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 2.8s; }
.turtles-bar:nth-child(2) { animation-delay: 0.5s; animation-duration: 3.2s; }
.turtles-bar:nth-child(3) { animation-delay: 0.2s; animation-duration: 2.9s; }
.turtles-bar:nth-child(4) { animation-delay: 0.8s; animation-duration: 3.5s; }
.turtles-bar:nth-child(5) { animation-delay: 0.3s; animation-duration: 3.0s; }
.turtles-bar:nth-child(6) { animation-delay: 0.6s; animation-duration: 3.3s; }
.turtles-card:hover .turtles-bar { background-color: rgba(255, 255, 255, 0.2); }

/* =========================================================
   CARD 4: ROI PERFORMANCE DASHBOARD
========================================================= */
.turtles-card-4-layout { display: flex; flex-direction: column; gap: 32px; align-items: center; }
@media (min-width: 768px) { .turtles-card-4-layout { flex-direction: row; } }
.turtles-roi-visual {
  width: 100%; height: 160px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (min-width: 768px) { .turtles-roi-visual { width: 280px; } }

.turtles-roi-dash {
  width: 80%; height: 65%; background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.turtles-card:hover .turtles-roi-dash { transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05); }

.turtles-roi-header { display: flex; justify-content: space-between; align-items: flex-start; }
.turtles-roi-label { font-size: 10px; color: #a1a1aa; text-transform: uppercase; letter-spacing: 0.05em; margin: 0;}
.turtles-roi-value { font-size: 24px; font-weight: 600; color: #ffffff; margin-top: 2px; }
.turtles-roi-badge { background: rgba(34,197,94,0.15); color: #4ade80; padding: 4px 8px; border-radius: 6px; font-size: 10px; font-weight: 700; border: 1px solid rgba(34,197,94,0.3); }

.turtles-roi-chart { position: absolute; bottom: 0; left: 0; width: 100%; height: 40px; opacity: 0.8; }

/* =========================================================
   FUN.XYZ SLEEK HERO THEME (TEMPORARY/TOGGLABLE)
========================================================= */
.fun-hero-section {
  background-color: #0b0b0c; /* Super dark, rich background */
  color: #ffffff;
  padding-top: 140px;
  padding-bottom: 96px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fun-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align content to the left */
  text-align: left; /* Left-align text */
}

/* Announce Badge */
.fun-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fun-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.fun-badge-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fun-badge-link .arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.fun-badge:hover .fun-badge-link .arrow {
  transform: translateX(4px);
}

/* Main Sleek Typography */
.fun-display-xl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 85px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4.25px;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 880px;
}

@media (max-width: 768px) {
  .fun-display-xl {
    font-size: 46px;
    letter-spacing: -1.8px;
    line-height: 1.1;
  }
}

/* Descriptive Paragraph */
.fun-body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45); /* Muted slate/gray style */
  max-width: 680px;
  margin-bottom: 36px;
}

.fun-body-lg .fun-highlight {
  color: #ffffff; /* Contrast highlighted white text */
  font-weight: 500;
}

@media (max-width: 768px) {
  .fun-body-lg {
    font-size: 16px;
  }
}

/* Buttons section */
.fun-actions {
  margin-bottom: 80px;
}

.fun-btn-glass {
  display: inline-flex;
  align-items: center;
  padding: 6px 6px 6px 26px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #1c1c1e;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.fun-btn-glass:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fun-btn-glass:active {
  transform: translateY(0);
}

.fun-btn-glass-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #212122; /* Charcoal black circle */
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fun-btn-glass:hover .fun-btn-glass-circle {
  background-color: #0b0b0c;
  transform: scale(1.05);
}

.fun-btn-glass-circle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fun-btn-glass:hover .fun-btn-glass-circle svg {
  transform: translateX(2px);
}

/* Premium Twilight Mockup Frame */
.fun-mockup-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  perspective: 2000px;
  align-self: flex-start; /* Left-align mockup container */
}

.fun-mockup-frame {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  line-height: 0;
  transition: border-color 0.3s ease, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.fun-mockup-frame:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.fun-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

.fun-mockup-frame:hover .fun-mockup-image {
  opacity: 1;
}

/* --- MOTION SYSTEM: Apple-Signature Soft Blur-In --- */
.fun-soft-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(16px);
  animation: funSoftBlurIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered Delay Chains */
.fun-badge.fun-soft-blur {
  animation-delay: 0.1s;
}

.fun-display-xl.fun-soft-blur {
  animation-delay: 0.25s;
}

.fun-body-lg.fun-soft-blur {
  animation-delay: 0.4s;
}

.fun-actions.fun-soft-blur {
  animation-delay: 0.55s;
}

.fun-mockup-wrapper.fun-soft-blur {
  animation-delay: 0.7s;
  transform: translateY(32px); /* larger slide up distance for the mockup */
  animation-name: funMockupBlurIn;
}

@keyframes funSoftBlurIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes funMockupBlurIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(32px) scale(0.97);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   TESTIMONIALS SECTION (SHADCN.IO STYLE)
========================================================= */
.testimonials-wrapper {
  position: relative;
  width: 100%;
  display: block; /* Standard block container ensures -webkit-mask rendering compatibility */
  overflow: hidden;
  padding: 32px 0;
  background-color: var(--color-canvas);
  /* True CSS masking for smooth edge fading without solid overlay blocks */
  mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

@media (max-width: 768px) {
  .testimonials-wrapper {
    /* Narrower mask curves on mobile to maximize card visibility */
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
}

.testimonials-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonials-marquee-row:last-child {
  margin-bottom: 0;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Pause scroll animation on hover to allow reading reviews */
.testimonials-track:hover {
  animation-play-state: paused;
}

/* Testimonial Cards Layout */
.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-hairline);
  border-radius: var(--rounded-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.testimonial-author-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-author-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-ink-muted);
}

.testimonial-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #27272a;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Continuous Scroll Speeds */
.testimonials-scroll-normal {
  animation: testimonialsScrollNormal 28s linear infinite;
}

.testimonials-scroll-slow {
  animation: testimonialsScrollSlow 36s linear infinite;
}

@keyframes testimonialsScrollNormal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes testimonialsScrollSlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

