/* Made Simpler Website Styles */
/* Brand Colors:
   Primary: Lavender #a184ff (RGB: 161, 132, 255)
   Accent: Picton Blue #4da9e7 (RGB: 77, 169, 231)
   Gray: Philippine Gray #8d8b8b (RGB: 141, 139, 139)
   Black: #000000
   Eerie Black: #191919
   White: #ffffff
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

p {
    margin-bottom: 16px;
}

strong {
    font-weight: 600;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(161, 132, 255, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo img.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #a184ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4da9e7, #a184ff);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #4da9e7;
    color: #ffffff;
}

.btn-primary:hover {
    background: #3d96d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 169, 231, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #a184ff;
}

.btn-secondary:hover {
    background: #a184ff;
    border-color: #a184ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(161, 132, 255, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #191919 0%, #000000 50%, #0a1628 100%);
    opacity: 0.8;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(161, 132, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 169, 231, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(90deg, #4da9e7, #a184ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #a184ff;
}

.hero-tertiary {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #8d8b8b;
}

.hero-description strong {
    font-weight: 600;
    color: #ffffff;
}

.hero-highlight span strong {
    font-weight: 600;
}

/* Legacy support - keeping for any other uses */
.hero-subhead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #8d8b8b;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(161, 132, 255, 0.1);
    border: 1px solid rgba(161, 132, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-highlight i {
    color: #a184ff;
    font-size: 20px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.proof-strip {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(161, 132, 255, 0.2);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #8d8b8b;
}

.proof-item i {
    color: #4da9e7;
}

/* Section Base Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffffff, #a184ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #8d8b8b;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Proposition Section */
.value-prop {
    background: #191919;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Strategic Highlighting Framework */
.accent-highlight {
    font-weight: 600;
    color: #4da9e7; /* Picton Blue - primary accent */
}

.value-prop strong {
    font-weight: 600;
    color: #ffffff;
}

.problem-statement {
    font-size: 18px;
    line-height: 1.8;
    color: #8d8b8b;
    margin-bottom: 24px;
}

.solution-statement {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Legacy support - keeping for any other uses */
.value-text {
    font-size: 18px;
    line-height: 1.8;
    color: #8d8b8b;
    margin-bottom: 24px;
}

.methodology-highlight {
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.1), rgba(161, 132, 255, 0.1));
    border-left: 4px solid #a184ff;
    padding: 24px;
    margin-top: 40px;
    border-radius: 8px;
}

.methodology-highlight h3 {
    color: #a184ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.methodology-highlight p {
    color: #ffffff;
    margin-bottom: 0;
}

.methodology-explanation {
    font-size: 18px;
    line-height: 1.8;
}

/* Methodology Section */
.methodology {
    background: #000000;
}

.methodology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    color: #8d8b8b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.process-card {
    background: #191919;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: #a184ff;
    box-shadow: 0 12px 32px rgba(161, 132, 255, 0.2);
}

.process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

/* Engagement Models */
.engagement-models {
    margin-top: 64px;
}

.engagement-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 32px;
    color: #a184ff;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.engagement-card {
    background: #191919;
    border: 2px solid rgba(77, 169, 231, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: #4da9e7;
    transform: translateY(-4px);
}

.engagement-featured {
    border-color: #a184ff;
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.05), rgba(161, 132, 255, 0.05));
}

.engagement-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.engagement-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.engagement-lead {
    color: #a184ff;
    margin-bottom: 16px;
    font-weight: 500;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
}

.engagement-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #8d8b8b;
}

.engagement-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

.engagement-card strong {
    font-weight: 600;
    color: #ffffff;
}

.engagement-lead strong {
    color: #4da9e7;
}

/* Services Section */
.services {
    background: #191919;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #000000;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #a184ff;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(161, 132, 255, 0.05);
}

.accordion-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.accordion-title p {
    font-size: 14px;
    color: #8d8b8b;
    margin-bottom: 0;
}

.accordion-arrow {
    font-size: 20px;
    color: #a184ff;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 0 24px 24px;
}

.accordion-content h4 {
    color: #a184ff;
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #8d8b8b;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

.proprietary-box {
    background: linear-gradient(135deg, rgba(161, 132, 255, 0.1), rgba(77, 169, 231, 0.05));
    border-left: 4px solid #a184ff;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
}

.proprietary-box i {
    color: #a184ff;
    margin-right: 8px;
}

.advantage-box {
    background: rgba(77, 169, 231, 0.1);
    border-left: 4px solid #4da9e7;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    color: #8d8b8b;
}

.services-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 18px;
    color: #8d8b8b;
}

/* Results Section */
.results {
    background: #000000;
}

.case-studies {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study {
    background: #191919;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
}

.case-header h3 {
    font-size: 24px;
    color: #4da9e7;
    margin-bottom: 24px;
}

.case-quote {
    background: rgba(161, 132, 255, 0.05);
    border-left: 4px solid #a184ff;
    padding: 20px;
    margin-bottom: 32px;
    border-radius: 8px;
}

.case-quote i {
    color: #a184ff;
    font-size: 24px;
    margin-bottom: 12px;
}

.case-quote p {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 12px;
}

.case-quote cite {
    color: #8d8b8b;
    font-size: 14px;
    font-style: normal;
}

.case-challenge,
.case-response,
.case-results {
    margin-bottom: 24px;
}

.case-challenge h4,
.case-response h4,
.case-results h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 12px;
}

.case-challenge h4 {
    color: #ff6b6b;
}

.case-response h4 {
    color: #4da9e7;
}

.case-results h4 {
    color: #a184ff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.metric {
    background: rgba(77, 169, 231, 0.05);
    border: 1px solid rgba(77, 169, 231, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #4da9e7;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #8d8b8b;
}

.results-list {
    list-style: none;
    padding: 0;
}

.results-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #8d8b8b;
}

.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

/* Competitive Advantage Section */
.competitive-advantage {
    background: linear-gradient(135deg, #191919, #0a1628);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.advantage-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: #a184ff;
    box-shadow: 0 12px 32px rgba(161, 132, 255, 0.3);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.advantage-card p {
    color: #8d8b8b;
    font-size: 14px;
    margin-bottom: 0;
}

.advantage-card strong {
    font-weight: 600;
    color: #ffffff;
}

/* FAQ Section */
.faq {
    background: #191919;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #000000;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #a184ff;
    transform: translateY(-4px);
}

.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 12px;
    color: #a184ff;
}

.faq-item h3 i {
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-item p {
    color: #8d8b8b;
    font-size: 14px;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #000000, #0a1628);
    text-align: center;
    padding: 100px 0;
}

.cta-subtitle {
    font-size: 20px;
    color: #8d8b8b;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #191919;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(161, 132, 255, 0.2);
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img.logo {
    height: 80px;
    width: auto;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #a184ff;
}

.footer-values {
    font-size: 14px;
    color: #8d8b8b;
    margin-bottom: 32px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(161, 132, 255, 0.1);
    color: #8d8b8b;
    font-size: 14px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #191919;
    border: 1px solid rgba(161, 132, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(161, 132, 255, 0.3);
    transform: rotate(90deg);
}

.modal-content {
    overflow-y: auto;
    padding: 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #a184ff;
}

.modal-header p {
    color: #8d8b8b;
    margin-bottom: 0;
}

.consultation-info {
    background: rgba(77, 169, 231, 0.05);
    border: 1px solid rgba(77, 169, 231, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.consultation-info h3 {
    color: #4da9e7;
    margin-bottom: 16px;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
}

.consultation-info li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8d8b8b;
}

.consultation-info li i {
    color: #4da9e7;
}

.typeform-container {
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 22px;
    }

    .hero-tertiary {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: black;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #667eea;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        
    }
     .nav-menu li {
            padding-bottom: 10px;
        }

    .nav-menu.active {
        display: block;
        padding-left: 25px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .hero-ctas,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .proof-strip {
        flex-direction: column;
        gap: 16px;
    }

    .process-grid,
    .engagement-grid,
    .advantage-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 24px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .case-study {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .accordion-header {
        padding: 16px;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .accordion-title h3 {
        font-size: 16px;
    }

    .modal-container {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    h3.warning-headline{
        font-size: 22px;
    }
    .testimonial-card{
        max-width: 99%!important;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Loading State for Typeform */
.typeform-container::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(161, 132, 255, 0.2);
    border-top-color: #a184ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 100px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}