:root {
  /* Typography - New Font */
  --font-heading-name: "Plus Jakarta Sans";
  --font-body-name: "Plus Jakarta Sans";
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --letter-spacing-heading: -1px;
  --letter-spacing-body: 0px;

  /* Spacing */
  --space-base: 1rem;

  /* Borders - Updated to slightly sharper, modern curves */
  --radius-small: 0.75rem;
  --radius-large: 1.25rem;
  --border-width: 1px;

  /* Shadows - Updated to Emerald tone */
  --shadow-color: 16 185 129; /* Emerald 500 */
  --shadow-offset-x: 0px;
  --shadow-offset-y: 8px;
  --shadow-blur: 32px;
  --shadow-spread: -8px;
  --shadow-opacity: 0.25;
  --shadow-custom: var(--shadow-offset-x) var(--shadow-offset-y)
    var(--shadow-blur) var(--shadow-spread)
    rgba(var(--shadow-color), var(--shadow-opacity));
  --shadow-custom-hover: 0px 12px 40px -4px rgba(var(--shadow-color), 0.4);
}

/*
 * New Frame Styles
 * Generated by UXMagic Copilot
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Grid
 * 4. Components
 * 5. Utilities
 * 6. Responsive Design
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
}

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

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

/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}

/* ==========================================================================
   4. Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #007bff;
  color: white;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}

.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   5. Utilities
   ========================================================================== */

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

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

/* ==========================================================================
   6. Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }

  .row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 0.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   7. Project Specific Styles
   ========================================================================== */

html {
  scroll-behavior: smooth;
  background-color: #0a0a0a;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #404040;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

details > summary {
  list-style: none;
}

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

@media (max-width: 767px) {
  .landing-page main .hero-section {
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
    align-items: flex-start;
  }

  .landing-page main section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .landing-page main h1 {
    font-size: clamp(2rem, 8.4vw, 2.85rem) !important;
    line-height: 1.12 !important;
  }

  .landing-page main h2 {
    font-size: clamp(1.55rem, 6.7vw, 2.1rem) !important;
    line-height: 1.18 !important;
  }

  .landing-page main h3 {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem) !important;
    line-height: 1.25 !important;
  }

  .landing-page main h4 {
    font-size: clamp(1.05rem, 4.6vw, 1.25rem) !important;
    line-height: 1.3 !important;
  }

  .landing-page main p {
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }

  .landing-page main a.inline-flex,
  .landing-page main button[type="submit"] {
    font-size: 0.95rem !important;
    padding: 0.9rem 1.15rem !important;
    border-radius: 0.9rem !important;
  }
}
