:root {
    --background: 222 47% 6%;
    --foreground: 210 40% 98%;
    --card: 222 47% 8%;
    --card-foreground: 210 40% 98%;
    --primary: 174 72% 56%;
    --primary-foreground: 222 47% 6%;
    --secondary: 222 30% 14%;
    --secondary-foreground: 210 40% 98%;
    --muted: 222 30% 18%;
    --muted-foreground: 215 20% 55%;
    --accent: 174 72% 56%;
    --accent-foreground: 222 47% 6%;
    --border: 222 30% 18%;
    --input: 222 30% 18%;
    --ring: 174 72% 56%;
    --radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background-color: hsl(222, 47%, 6%);
    color: hsl(210, 40%, 98%);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

html {
    background-color: hsl(222, 47%, 6%);
}

/* Logo Styling */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 2.295rem;
    height: 2.295rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: transparent !important;
    padding: 0;
}

.logo-icon img {
    background: transparent !important;
    mix-blend-mode: normal;
}

.logo-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

/* Logo hover effects removed */

.logo-text {
    color: hsl(210, 40%, 98%);
}

.logo-text .text-primary {
    color: hsl(174, 72%, 56%);
}

/* Footer Styling */
.footer-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
    }
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: hsl(215, 20%, 55%);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: hsl(215, 20%, 55%);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: hsl(222, 30%, 14%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(215, 20%, 55%);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    color: hsl(215, 20%, 55%);
    background-color: hsl(222, 30%, 14%);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(222, 30%, 18%, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsl(215, 20%, 55%);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Remove browser default validation icons (orange error icons) but keep error messages */
input[type="text"]:invalid,
input[type="email"]:invalid,
input[type="url"]:invalid,
textarea:invalid {
    background-image: none !important;
}

input[type="text"]:invalid:focus,
input[type="email"]:invalid:focus,
input[type="url"]:invalid:focus,
textarea:invalid:focus {
    background-image: none !important;
}

/* Hide only the orange icon in validation bubbles (WebKit browsers) */
input::-webkit-validation-bubble-icon,
input::-webkit-validation-bubble-icon-inner {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Remove Firefox validation icon styling */
input:-moz-ui-invalid {
    box-shadow: none !important;
}

/* Custom Validation Messages */
.validation-message {
    display: none;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: hsl(222, 47%, 8%);
    border: 1px solid hsl(0, 65%, 50%);
    border-radius: 0.5rem;
    color: hsl(0, 65%, 75%);
    font-size: 0.875rem;
    line-height: 1.25rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    width: fit-content;
    max-width: 45%;
    min-width: fit-content;
}

.validation-message.show {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

.validation-message::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 1rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid hsl(0, 65%, 50%);
}

.validation-message::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 1rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid hsl(222, 47%, 8%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error state for input fields - removed red highlighting, only show error message */

/* Form field padding utilities */
.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

/* Select dropdown styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234ade80' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Textarea resize */
.resize-y {
    resize: vertical;
}

.resize-none {
    resize: none;
}

/* Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid hsl(222, 30%, 18%);
    background-color: hsl(222, 47%, 8%);
    border-radius: 0.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: hsl(174, 72%, 56%);
    border-color: hsl(174, 72%, 56%);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.375rem;
    height: 0.625rem;
    border: solid hsl(222, 47%, 6%);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

input[type="checkbox"]:hover {
    border-color: hsl(174, 72%, 56%);
}

input[type="checkbox"]:focus {
    outline: none;
    ring: 2px;
    ring-color: hsl(174, 72%, 56%);
    ring-offset: 0;
    ring-offset-color: hsl(222, 47%, 6%);
}

/* Red text color for required asterisk */
.text-red-500 {
    color: #ef4444;
}

/* Gray background and text utilities for form */
.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-white {
    background-color: #ffffff;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-600 {
    color: #4b5563;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: hsl(222, 47%, 6%);
}

.bg-background\/80 {
    background-color: hsla(222, 47%, 6%, 0.8);
}

.bg-card {
    background-color: hsl(222, 47%, 8%);
}

.bg-secondary {
    background-color: hsl(222, 30%, 14%);
}

.bg-secondary\/30 {
    background-color: hsla(222, 30%, 14%, 0.3);
}

.bg-secondary\/50 {
    background-color: hsla(222, 30%, 14%, 0.5);
}

.bg-primary {
    background-color: hsl(174, 72%, 56%);
}

.bg-primary\/5 {
    background-color: hsla(174, 72%, 56%, 0.05);
}

.bg-primary\/10 {
    background-color: hsla(174, 72%, 56%, 0.1);
}

.bg-primary\/20 {
    background-color: hsla(174, 72%, 56%, 0.2);
}

.bg-primary\/30 {
    background-color: hsla(174, 72%, 56%, 0.3);
}

.text-primary {
    color: hsl(174, 72%, 56%);
}

.text-primary-foreground {
    color: hsl(222, 47%, 6%);
}

.text-foreground {
    color: hsl(210, 40%, 98%);
}

.text-muted-foreground {
    color: hsl(215, 20%, 55%);
}

.border-border {
    border-color: hsl(222, 30%, 18%);
}

.border-border\/50 {
    border-color: hsla(222, 30%, 18%, 0.5);
}

.border-primary\/30 {
    border-color: hsla(174, 72%, 56%, 0.3);
}

.border-primary\/50 {
    border-color: hsla(174, 72%, 56%, 0.5);
}

/* Layout */
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.top-1\/4 {
    top: 25%;
}

.left-1\/2 {
    left: 50%;
}

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

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

/* Flexbox & Grid */
.flex {
    display: flex;
}

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

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.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;
}

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Spacing */
.section-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .section-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

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

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

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

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

.mb-5 {
    margin-bottom: 1.25rem;
}

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

.mb-2\.5 {
    margin-bottom: 0.625rem;
}

.mb-3\.5 {
    margin-bottom: 0.875rem;
}

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

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

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

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

.mt-1 {
    margin-top: 0.25rem;
}

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

.mt-20 {
    margin-top: 5rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

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

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

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

.pt-12 {
    padding-top: 3rem;
}

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

.pt-20 {
    padding-top: 5rem;
}

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

.pt-28 {
    padding-top: 7rem;
}

.pt-32 {
    padding-top: 8rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.p-2 {
    padding: 0.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

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

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

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

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

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

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

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

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

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

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

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

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

.font-medium {
    font-weight: 500;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

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

/* Colors & Backgrounds */
.text-gradient {
    background-image: linear-gradient(to right, hsl(174, 72%, 56%), #38bdf8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.bg-gradient-radial {
    background: radial-gradient(ellipse at center, hsla(174, 72%, 56%, 0.15) 0%, transparent 70%);
}

.grid-pattern {
    background-image: linear-gradient(hsl(210, 40%, 98%) 1px, transparent 1px),
                      linear-gradient(90deg, hsl(210, 40%, 98%) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.02;
}

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

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

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

.border-gradient {
    border: 1px solid transparent;
    background: linear-gradient(hsl(222, 47%, 8%), hsl(222, 47%, 8%)) padding-box,
                linear-gradient(135deg, hsla(174, 72%, 56%, 0.5), transparent 50%) border-box;
}

/* Border Radius */
.rounded-lg {
    border-radius: var(--radius);
}

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

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

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

/* Sizing */
.w-4 {
    width: 1rem;
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.w-8 {
    width: 2rem;
    height: 2rem;
}

.w-10 {
    width: 2.5rem;
    height: 2.5rem;
}

.w-12 {
    width: 3rem;
    height: 3rem;
}

.w-16 {
    width: 4rem;
    height: 4rem;
}

.h-16 {
    height: 4rem;
}

.h-8 {
    height: 2rem;
}

.h-9 {
    height: 2.25rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: hsl(174, 72%, 56%);
    color: hsl(222, 47%, 6%);
    padding: 0 12px;
    height: 2.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px -5px hsla(174, 72%, 56%, 0.4);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: hsla(174, 72%, 56%, 0.9);
    box-shadow: 0 0 40px -10px hsla(174, 72%, 56%, 0.5);
    transform: scale(1.05);
}

.btn-primary.btn-large {
    font-weight: 700;
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 700;
    border: 2px solid hsl(174, 72%, 56%);
    background-color: transparent;
    color: hsl(210, 40%, 98%);
    padding: 0 2.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: hsla(174, 72%, 56%, 0.1);
    border-color: hsl(174, 72%, 56%);
}

/* Navigation Links */
.nav-link {
    color: hsl(215, 20%, 55%);
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.nav-link:hover {
    color: hsl(210, 40%, 98%);
}

/* Backdrop Blur */
.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Glow Effects */
.glow-primary-sm {
    box-shadow: 0 0 20px -5px hsla(174, 72%, 56%, 0.4);
}

.glow-primary {
    box-shadow: 0 0 40px -10px hsla(174, 72%, 56%, 0.5);
}

.group:hover .group-hover\:glow-primary-sm {
    box-shadow: 0 0 20px -5px hsla(174, 72%, 56%, 0.4);
}

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

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.animate-glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

/* Transforms */
.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.translate-x-1\/2 {
    transform: translateX(50%);
}

/* Hover States */
.group:hover .group-hover\:bg-primary\/20 {
    background-color: hsla(174, 72%, 56%, 0.2);
}

.group:hover .group-hover\:text-primary\/40 {
    color: hsla(174, 72%, 56%, 0.4);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Arrow Hover Animation */
.arrow-hover {
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .arrow-hover {
    opacity: 1;
    transform: translateX(0);
}

/* Card Hover Effects */
.group:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Link Hover */
footer a.hover\:text-foreground:hover {
    color: hsl(210, 40%, 98%);
}

/* Social Icon Hover */
footer a.hover\:bg-secondary\/80:hover {
    background-color: hsla(222, 30%, 14%, 0.8);
}

/* Hover utility classes - matching HTML class names */
[class*="hover:border-primary/30"]:hover,
.hover\:border-primary\/30:hover {
    border-color: hsla(174, 72%, 56%, 0.3) !important;
}

[class*="hover:bg-secondary/50"]:hover,
.hover\:bg-secondary\/50:hover {
    background-color: hsla(222, 30%, 14%, 0.5) !important;
}

[class*="hover:border-primary/50"]:hover,
.hover\:border-primary\/50:hover {
    border-color: hsla(174, 72%, 56%, 0.5) !important;
}

[class*="hover:text-foreground"]:hover,
.hover\:text-foreground:hover {
    color: hsl(210, 40%, 98%) !important;
}

[class*="hover:bg-secondary/80"]:hover,
.hover\:bg-secondary\/80:hover {
    background-color: hsla(222, 30%, 14%, 0.8) !important;
}

[class*="hover:glow-primary-sm"]:hover,
.hover\:glow-primary-sm:hover {
    box-shadow: 0 0 20px -5px hsla(174, 72%, 56%, 0.4) !important;
}

/* Group hover utilities */
[class*="group-hover:glow-primary-sm"] {
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover [class*="group-hover:glow-primary-sm"] {
    box-shadow: 0 0 20px -5px hsla(174, 72%, 56%, 0.4) !important;
}

[class*="group-hover:bg-primary/20"] {
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover [class*="group-hover:bg-primary/20"] {
    background-color: hsla(174, 72%, 56%, 0.2) !important;
}

[class*="group-hover:text-primary/40"] {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover [class*="group-hover:text-primary/40"] {
    color: hsla(174, 72%, 56%, 0.4) !important;
}

[class*="group-hover:scale-110"] {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover [class*="group-hover:scale-110"] {
    transform: scale(1.1) !important;
}

/* Approach Section Number Hover */
.group .text-primary\/20.group-hover\:text-primary\/40 {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pointer-events-none {
    pointer-events: none;
}

/* Responsive */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:gap-8 {
        gap: 2rem;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

/* Grid Columns */
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Grid Column Span */
.col-span-2 {
    grid-column: span 2 / span 2;
}

@media (min-width: 768px) {
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Blur */
.blur-3xl {
    filter: blur(64px);
}

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

.w-\[800px\] {
    width: 800px;
}

.h-\[800px\] {
    height: 800px;
}

.w-\[600px\] {
    width: 600px;
}

.h-\[600px\] {
    height: 600px;
}

/* SVG Icons */
.lucide {
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Contact Form Label Spacing */
#contact-form label {
    margin-bottom: 2rem !important;
}

/* Mobile button widths - make hero buttons same width on mobile */
@media (max-width: 640px) {
    .btn-primary.btn-large,
    .btn-secondary.btn-large {
        width: 100% !important;
    }
}

/* Bio expandable content styles */
.bio-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: hsl(174, 72%, 56%);
}

.bio-toggle-btn:hover {
    opacity: 0.8;
}

.bio-toggle-arrow {
    transition: transform 0.2s;
}

.bio-toggle-btn.expanded .bio-toggle-arrow {
    transform: rotate(180deg);
}

/* Bio expandable content is hidden by default at all breakpoints */
.bio-expandable {
    display: none;
}

/* Toggle button is visible at all breakpoints */
.bio-toggle-btn {
    display: inline-flex;
}

