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

:root {
  /* Clear Street Signature Colors */
  --cs-blue: #2E21DE;
  --cs-dark: #040313;
  --cs-light-blue: #EAF2FF;
  --cs-accent: #9BBCFD;
  --cs-white: #ffffff;
  --cs-grey: #656578;
  
  /* Layout */
  --site-padding: clamp(24px, 5vw, 64px);
  --section-padding: clamp(60px, 12vw, 160px);
  --border-radius: 20px;
  --border-radius-lg: 32px;
}

[data-theme="light"] {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #EAF2FF;
  --text-primary: #040313;
  --text-secondary: #656578;
  --border-color: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --card-bg: #FFFFFF;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

[data-theme="dark"] {
  --bg-primary: #040313;
  --bg-secondary: #0A0826;
  --bg-tertiary: #14104d;
  --text-primary: #FFFFFF;
  --text-secondary: #9BBCFD;
  --border-color: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(4, 3, 19, 0.85);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--cs-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--text-primary);
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 {
  background: linear-gradient(135deg, #ffffff 0%, var(--cs-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.glow-hover {
  position: relative;
}
.glow-hover::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--cs-blue);
  opacity: 0;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.glow-hover:hover::after {
  opacity: 0.3;
  box-shadow: 0 0 40px 10px var(--cs-blue);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.floating-nav.scrolled {
  top: 12px;
  width: calc(100% - 24px);
  box-shadow: var(--card-shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-brand img {
  height: 28px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cs-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.theme-toggle:hover {
  color: var(--cs-blue);
}

.btn-primary {
  background-color: var(--cs-blue);
  color: var(--cs-white) !important;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(46,33,222,0.3);
}

.btn-primary:hover {
  background-color: #2116b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,33,222,0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: calc(var(--section-padding) + 80px) var(--site-padding) var(--section-padding);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(155, 188, 253, 0.05) 0%, rgba(46, 33, 222, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-weight: 400;
}

.hero .btn-primary {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(46,33,222,0.3);
}

.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,33,222,0.4);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  padding: 10px;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

/* ==========================================================================
   HERO BACKGROUND ANIMATED CHARTS
   ========================================================================== */
.hero-bg-graphs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-graph {
  position: absolute;
  opacity: 0.25;
  filter: blur(14px);
  will-change: transform, opacity;
}

[data-theme="dark"] .bg-graph {
  opacity: 0.35;
  filter: blur(20px);
}

.pie-chart {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: conic-gradient(var(--cs-blue) 0% 40%, var(--cs-accent) 40% 75%, #10b981 75% 100%);
  top: 15%;
  left: 5%;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  top: 40%;
  right: 5%;
  height: 250px;
}

.bar {
  width: 40px;
  background: var(--cs-blue);
  border-radius: 12px 12px 0 0;
  animation: bar-grow 4s infinite alternate ease-in-out;
}

.bar-1 { height: 40%; animation-delay: 0s; background: var(--cs-accent); }
.bar-2 { height: 60%; animation-delay: 0.5s; }
.bar-3 { height: 85%; animation-delay: 1.0s; background: #8b5cf6; }
.bar-4 { height: 100%; animation-delay: 1.5s; background: #10b981; }

@keyframes bar-grow {
  0% { transform: scaleY(0.8); transform-origin: bottom; }
  100% { transform: scaleY(1.1); transform-origin: bottom; }
}

.line-chart {
  width: 500px;
  height: 250px;
  top: 60%;
  left: -5%;
}

.productivity-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid var(--cs-accent);
  border-left-color: transparent;
  top: -5%;
  right: 25%;
  animation: slow-spin 20s linear infinite;
}

.pulse-anim {
  animation: slow-pulse 8s infinite alternate ease-in-out;
}

.float-anim-1 {
  animation: float-anim 12s infinite alternate ease-in-out;
}

.float-anim-2 {
  animation: float-anim 15s infinite alternate-reverse ease-in-out;
}

@keyframes slow-pulse {
  0% { transform: scale(1) rotate(0deg); opacity: 0.2; }
  100% { transform: scale(1.1) rotate(15deg); opacity: 0.3; }
}

@keyframes float-anim {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(5deg); }
}

@keyframes slow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  background-color: var(--bg-tertiary);
  padding: 80px var(--site-padding);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.stat-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--cs-blue);
  line-height: 1;
  letter-spacing: -2px;
}

[data-theme="dark"] .stat-num {
  color: var(--cs-white);
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ==========================================================================
   INTEGRATIONS LOGO BAR (Marketing Expansion)
   ========================================================================== */
.integrations {
    padding: 60px var(--site-padding);
    background: var(--bg-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.integrations h4 {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 6vw, 64px);
    flex-wrap: wrap;
    color: var(--text-secondary);
    align-items: center;
}

.integration-logos i {
    font-size: 48px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.integration-logos i:hover {
    transform: scale(1.1);
    color: var(--cs-blue);
}

.integration-logos img {
    height: 44px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

[data-theme="dark"] .integration-logos img {
    filter: grayscale(100%) contrast(0%) brightness(200%);
    opacity: 0.8;
}

.integration-logos img:hover {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}


/* ==========================================================================
   FEATURES 
   ========================================================================== */
.features {
  padding: var(--section-padding) var(--site-padding);
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-label {
  color: var(--cs-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

[data-theme="dark"] .section-label {
  color: var(--cs-accent);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 20px;
  color: var(--text-secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--cs-blue);
}

.bento-full {
  grid-column: span 12;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.bento-half {
  grid-column: span 6;
}

.bento-grid-small {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.bento-card img {
  width: 100%;
  border-radius: 16px;
  margin-top: 32px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  object-position: top;
}

.bento-full img {
  width: 50%;
  margin-top: 0;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--cs-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   USE CASES
   ========================================================================== */
.usecases {
  padding: var(--section-padding) var(--site-padding);
  background-color: var(--bg-primary);
}

.usecase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.usecase-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
}

.usecase-item {
  padding: 32px;
  border-left: 2px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.usecase-item:hover, .usecase-item.active {
  border-left-color: var(--cs-blue);
  background: var(--bg-secondary);
}

.usecase-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.usecase-item p {
  color: var(--text-secondary);
}

/* ==========================================================================
   TESTIMONIALS (Marketing Expansion)
   ========================================================================== */
.testimonials {
    padding: var(--section-padding) var(--site-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--cs-blue);
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    color: var(--text-primary);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cs-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.author-name {
    font-weight: 700;
}
.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing {
  padding: var(--section-padding) var(--site-padding);
  background-color: var(--bg-primary);
}

.pricing-banner {
  position: relative;
  width: 100%;
  padding: 120px var(--site-padding);
  text-align: center;
  background: var(--bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 120px;
}

.pricing-banner-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float-anim 15s infinite alternate ease-in-out;
}

.blur-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--cs-blue);
  top: -100px;
  left: -10vw;
}

.blur-orb.orb-2 {
  width: 50vw;
  height: 500px;
  background: var(--cs-accent);
  bottom: -150px;
  right: -10vw;
  animation-delay: -5s;
}

[data-theme="dark"] .blur-orb {
  opacity: 0.15;
}

.pricing-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-banner .section-title {
  margin-bottom: 24px;
}

.pricing-banner .section-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.relative-z2 {
  position: relative;
  z-index: 2;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background-color: var(--bg-secondary);
  border: 2px solid var(--cs-blue);
  position: relative;
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cs-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.price-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.price-amt {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
}
.price-amt span {
  font-size: 24px;
  margin-top: 8px;
}

.price-period {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.price-features li i {
  color: var(--cs-blue);
}

/* ==========================================================================
   FAQ SECTION (Marketing Expansion)
   ========================================================================== */
.faq {
    padding: var(--section-padding) var(--site-padding);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    cursor: pointer;
}
.faq-item h4 {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}
.faq-item h4::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--cs-blue);
    transition: transform 0.3s ease;
}
.faq-item.active h4::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-secondary);
    margin-top: 0;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #040313; /* Always dark for extreme contrast */
  color: #FFFFFF;
  padding: 80px var(--site-padding) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.footer-brand img {
  height: 32px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #9BBCFD;
  max-width: 300px;
  font-size: 18px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #9BBCFD;
}

.footer-links a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: #656578;
  font-size: 14px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-full {
    flex-direction: column;
    align-items: flex-start;
  }
  .bento-full img {
    width: 100%;
  }
  .usecase-layout {
    grid-template-columns: 1fr;
  }
  .bento-half {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .floating-nav {
    border-radius: 16px;
    top: 16px;
  }
  .hero h1 {
      font-size: clamp(36px, 10vw, 48px);
  }
}
