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

/* Fonts */
@font-face {
    font-family: 'Circe';
    src: url('../fonts/fonts/Circe-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/fonts/Circe-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/fonts/CircularStd-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/fonts/CircularStd-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Design Tokens */
:root {
    --primary-purple: #3e3560;
    --light-purple: #6a4c93;
    --orange: #F09C05;
    --white: #ffffff;
    --light-bg: #e3f2f6;
    
    /* New Variable Names */
    --font-circe: 'Circe', sans-serif;
    --font-circular: 'CircularStd', sans-serif;
    
    /* Legacy Variable Names for Backward Compatibility */
    --font-family: 'Circe', sans-serif;
    --circular-font: 'CircularStd', sans-serif;
    --circe-font: 'Circe', sans-serif;
    --inter-font: 'Circe', sans-serif; /* Fallback for missing Inter font */
    
    /* Background Gradient from Figma */
    --bg-gradient: linear-gradient(166deg, 
        #5A4986 4.28%, 
        #5D4885 24.74%, 
        #674784 41.11%, 
        #784681 56.46%, 
        #91447D 70.78%, 
        #B04179 85.11%, 
        #D63E73 98.41%, 
        #F13C70 106.59%
    );

    /* Metallic Button Gradient from Figma context */
    --btn-gradient: linear-gradient(102deg, #A5CFD4 -41.35%, #D1E6E9 -1.31%, #F2F8F8 34.73%, #FFF 54.75%, #F9FBFC 60.76%, #A5CFD4 158.86%);
}

body {
    font-family: var(--font-circe);
    background: var(--bg-gradient);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

input, button {
    font-family: inherit;
}

/* Sobi Logo */
.sobi-logo,
.sobi-footer-logo {
    width: clamp(105px, 15.5vw, 170px);
    height: clamp(31px, 4.8vw, 48px);
}

.sobi-logo img,
.sobi-footer-logo img {
    width: 100%;
    height: auto;
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
