/**
 * Standalone CSS for letsroll.ai landing page
 * Converted from Tailwind CSS to vanilla CSS for self-contained HTML version
 */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary grey colors */
  --primary-50: #F5F5F6;
  --primary-100: #E6E6E7;
  --primary-200: #CFD0D2;
  --primary-300: #ADAEB3;
  --primary-400: #84858C;
  --primary-500: #696A71;
  --primary-600: #595961;
  --primary-700: #4C4D52;
  --primary-800: #434347;
  --primary-900: #3B3B3E;
  --primary-950: #2C2C2F;
  
  /* Secondary grey colors */
  --secondary-50: #F5F5F6;
  --secondary-100: #E6E6E7;
  --secondary-200: #CFD0D2;
  --secondary-300: #ADAEB3;
  --secondary-400: #84858C;
  --secondary-500: #696A71;
  --secondary-600: #595961;
  --secondary-700: #4C4D52;
  --secondary-800: #434347;
  --secondary-900: #3B3B3E;
  --secondary-950: #2C2C2F;
  
  /* Yellow colors */
  --yellow-50: #FBFEE8;
  --yellow-100: #F8FFC2;
  --yellow-200: #F1FF71;
  --yellow-300: #F4FF45;
  --yellow-400: #F8FC13;
  --yellow-500: #E8EC06;
  --yellow-600: #D97706;
  --yellow-700: #B56508;
  --yellow-800: #96520D;
  --yellow-900: #743E0D;
  --yellow-950: #422006;
  
  /* Blue colors */
  --blue-50: #F5F3FF;
  --blue-100: #EDE9FE;
  --blue-200: #DDD6FE;
  --blue-300: #C4B5FD;
  --blue-400: #A78BFA;
  --blue-500: #8B5CF6;
  --blue-600: #7C3AED;
  --blue-700: #6D28D9;
  --blue-800: #5B21B6;
  --blue-900: #4C1D95;
  --blue-950: #2E1065;
  
  /* Custom colors */
  --bg-faf9f6: #FAF9F6;
  --bg-e4e8ff: #E4E8FF;
  --bg-e4e4e7: #E4E4E7;
  --yellow-200-bg: #FBFEE8;
}

html {
  font-size: 16px;
  line-height: 1.2;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
  color: var(--primary-950);
  background-color: #ffffff;
}

/* Ensure all text elements use Inter by default */
html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
button,
input,
textarea,
select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
  color: var(--primary-950);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  line-height: 1.5;
}

/* Layout Utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-1440 {
  max-width: 1440px;
}

.max-w-1440px {
  max-width: 1440px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

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

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

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

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

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

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

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

.justify-end {
  justify-content: flex-end;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

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

/* Spacing */
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

/* Padding */
.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

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

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

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

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

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

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

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

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

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

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

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

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-48 {
  width: 12rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-48 {
  height: 12rem;
}

.min-h-80vh {
  min-height: 80vh;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

.right-4 {
  right: 1rem;
}

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

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

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

/* Background Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-yellow-200 {
  background-color: var(--yellow-200);
}

.bg-yellow-500 {
  background-color: var(--yellow-500);
}

.bg-primary-100 {
  background-color: var(--primary-100);
}

.bg-primary-700 {
  background-color: var(--primary-700);
}

.bg-primary-950 {
  background-color: var(--primary-950);
}

.bg-secondary-200 {
  background-color: var(--secondary-200);
}

.bg-secondary-300 {
  background-color: var(--secondary-300);
}

.bg-secondary-50 {
  background-color: var(--secondary-50);
}

.bg-secondary-100 {
  background-color: var(--secondary-100);
}

.bg-secondary-800 {
  background-color: var(--secondary-800);
}

.bg-faf9f6 {
  background-color: var(--bg-faf9f6);
}

.bg-e4e8ff {
  background-color: var(--bg-e4e8ff);
}

.bg-e4e4e7 {
  background-color: var(--bg-e4e4e7);
}

.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-secondary-800-95 {
  background-color: rgba(67, 67, 71, 0.95);
}

/* Text Colors */
.text-primary-950 {
  color: var(--primary-950);
}

.text-primary-900 {
  color: var(--primary-900);
}

.text-primary-800 {
  color: var(--primary-800);
}

.text-primary-700 {
  color: var(--primary-700);
}

.text-primary-600 {
  color: var(--primary-600);
}

.text-secondary-500 {
  color: var(--secondary-500);
}

.text-secondary-600 {
  color: var(--secondary-600);
}

.text-secondary-700 {
  color: var(--secondary-700);
}

.text-secondary-300 {
  color: var(--secondary-300);
}

.text-white {
  color: #ffffff;
}

/* Font Sizes */
.text-xs {
  font-size: 0.75rem;
}

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

.text-base {
  font-size: 1rem;
}

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

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

.text-2xl {
  font-size: 1.5rem;
}

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

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

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

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

/* Font Weights */
.font-medium {
  font-weight: 500;
}

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

.font-bold {
  font-weight: 700;
}

.font-serif {
  font-family: 'Lora', Georgia, serif;
}

/* Text Alignment */
.text-center {
  text-align: center;
}

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

/* Borders */
.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-primary-100 {
  border-color: var(--primary-100);
}

.border-primary-950 {
  border-color: var(--primary-950);
}

.border-secondary-200 {
  border-color: var(--secondary-200);
}

/* Border Radius */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

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

.rounded-full {
  border-radius: 9999px;
}

/* Shadows */
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Display */
.block {
  display: block;
}

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

.hidden {
  display: none;
}

/* Pointer Events */
.pointer-events-none {
  pointer-events: none;
}

/* User Select */
.select-none {
  user-select: none;
}

/* Self Alignment */
.self-start {
  align-self: flex-start;
}

/* Leading */
.leading-tight {
  line-height: 1.25;
}

/* Transform */
.transform {
  transform: translateZ(0);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Backdrop Blur */
.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

/* Animations */
@keyframes slide-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.3s ease-out;
}

/* Component Styles */
.tag {
  display: inline-block;
  transition: all 0.2s;
  flex-shrink: 0;
}

.tag-xs {
  padding: 0.125rem 0.25rem;
  font-size: 0.75rem;
}

.tag-sm {
  padding: 0.125rem 0.25rem;
  font-size: 0.875rem;
}

.tag-md {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
}

.tag-lg {
  padding: 0.375rem 0.75rem;
  font-size: 1.125rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 9999px;
  transition: colors 0.2s;
  cursor: pointer;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.button-primary {
  background-color: var(--primary-950);
  color: #ffffff;
  border-color: transparent;
}

.button-primary:hover {
  background-color: #ffffff;
  color: var(--primary-950);
  border-color: var(--primary-950);
}

.button-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}

.button-md {
  padding: 0.5rem 1.5rem;
}

.button-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.card {
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.card-flat {
  background-color: transparent;
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:block {
    display: block;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:ml-32 {
    margin-left: 8rem;
  }
  
  .md\:mb-0 {
    margin-bottom: 0;
  }
  
  .md\:mr-8 {
    margin-right: 2rem;
  }
  
  .md\:pt-10 {
    padding-top: 2.5rem;
  }
  
  .md\:pb-20 {
    padding-bottom: 5rem;
  }
  
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .md\:pt-10 {
    padding-top: 2.5rem;
  }
  
  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .md\:text-left {
    text-align: left;
  }
  
  .md\:text-center {
    text-align: center;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:p-10 {
    padding: 2.5rem;
  }
  
  .md\:max-w-5xl {
    max-width: 64rem;
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Section-specific styles */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  width: 100%;
  padding: 2.5rem 2rem 1rem;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin: 0 auto;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    margin-left: 8rem;
  }
}

.closing-banner {
  background-color: var(--yellow-200);
  color: var(--primary-950);
  text-align: center;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 80rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.closing-banner a {
  color: var(--primary-950);
  text-decoration: underline;
}

.closing-banner img {
  margin-bottom: 1rem;
}

.footer {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--secondary-200);
  display: block;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 2.5rem 1.5rem;
  }
}

.footer-copyright {
  padding: 1rem 0;
  border-top: 1px solid var(--secondary-200);
}

.cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
}

.cookie-notice-content {
  background-color: rgba(67, 67, 71, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 0.5rem;
  padding: 1rem;
  transform: translateY(0);
  transition: all 0.3s ease-out;
  animation: slide-up 0.3s ease-out;
}

.cookie-notice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cookie-notice-inner {
    flex-direction: row;
  }
}

.cookie-button {
  padding: 0.5rem 1rem;
  background-color: var(--primary-700);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.cookie-button:hover {
  background-color: var(--primary-800);
  transform: scale(1.02);
}

.cookie-button:active {
  transform: scale(0.95);
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utility classes */
.min-w-0 {
  min-width: 0;
}

