/* ===================================
   Anjuna Labs - Modern B2B Website
   =================================== */

/* CSS Variables - Design System */
:root {
    /* Colors - Inspired by screenshots */
    --color-background: #E8E8E8;
    --color-white: #FFFFFF;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-accent: #D47449;
    --color-accent-hover: #C06438;
    --color-border: #D0D0D0;
    --color-border-light: #E0E0E0;

    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 500;
    --font-weight-bold: 700;
    --font-weight-extrabold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;

    /* Container */
    --container-max-width: 1200px;
    --container-padding: 2rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    letter-spacing: -0.01em;
}

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

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

/* ===================================
   Layout Components
   =================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ===================================
   Header
   =================================== */

.header {
    background-color: var(--color-background);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(232, 232, 232, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link.active {
    color: var(--color-accent);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background-color: var(--color-background);
    padding: var(--spacing-3xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background SVG */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Animated hero paths */
.hero-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawPath 3s ease-in-out forwards;
}

.hero-path-1 {
    animation-delay: 0.2s;
}

.hero-path-2 {
    animation-delay: 0.5s;
}

.hero-path-3 {
    animation-delay: 0.8s;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animated geometric shapes */
.hero-circle,
.hero-hexagon,
.hero-triangle {
    animation: fadeInScale 1.5s ease-out forwards;
    transform-origin: center;
}

.hero-circle-1 {
    animation-delay: 1s;
}

.hero-circle-2 {
    animation-delay: 1.3s;
    animation: fadeInScale 1.5s ease-out forwards, float 12s ease-in-out infinite;
    animation-delay: 1.3s, 2.8s;
}

.hero-hexagon {
    animation-delay: 1.6s;
    animation: fadeInScale 1.5s ease-out forwards, subtlePulse 8s ease-in-out infinite;
    animation-delay: 1.6s, 3.1s;
    transform-box: fill-box;
}

.hero-triangle {
    animation-delay: 1.9s;
    animation: fadeInScale 1.5s ease-out forwards, gentleRotate 15s ease-in-out infinite;
    animation-delay: 1.9s, 3.4s;
    transform-box: fill-box;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-25px) translateX(5px);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.5;
    }
}

@keyframes gentleRotate {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.12;
    }
    50% {
        transform: rotate(8deg);
        opacity: 0.18;
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    text-align: center;
}

.hero-subtitles {
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    text-align: center;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(212, 116, 73, 0.2);
}

.cta-button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 116, 73, 0.3);
}

/* ===================================
   Section Dividers
   =================================== */

.section-divider {
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-background);
}

.divider-svg {
    width: 100%;
    height: 100%;
}

.divider-wave {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawDivider 2s ease-in-out forwards;
}

@keyframes drawDivider {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===================================
   About Section
   =================================== */

.about {
    background-color: var(--color-background);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Floating geometric shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatIn 2s ease-out forwards;
}

.floating-shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 116, 73, 0.08), rgba(212, 116, 73, 0.02));
    border: 1px solid rgba(212, 116, 73, 0.15);
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
    animation: floatIn 2s ease-out forwards, floatShape1 8s ease-in-out infinite;
    animation-delay: 0.5s, 2.5s;
}

.floating-shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.06), rgba(74, 74, 74, 0.01));
    border: 1px solid rgba(74, 74, 74, 0.1);
    bottom: 20%;
    left: 8%;
    border-radius: 20%;
    animation-delay: 0.8s;
    animation: floatIn 2s ease-out forwards, floatShape2 10s ease-in-out infinite;
    animation-delay: 0.8s, 2.8s;
}

.floating-shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 116, 73, 0.06), rgba(74, 74, 74, 0.02));
    border: 1px solid rgba(212, 116, 73, 0.12);
    top: 50%;
    right: 5%;
    border-radius: 30%;
    animation-delay: 1.1s;
    animation: floatIn 2s ease-out forwards, floatShape3 12s ease-in-out infinite;
    animation-delay: 1.1s, 3.1s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, -25px) rotate(270deg);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-25px, 20px) rotate(120deg);
    }
    66% {
        transform: translate(15px, -10px) rotate(240deg);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(10px, -20px) rotate(72deg);
    }
    40% {
        transform: translate(-15px, -35px) rotate(144deg);
    }
    60% {
        transform: translate(-20px, -10px) rotate(216deg);
    }
    80% {
        transform: translate(5px, -25px) rotate(288deg);
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    text-align: left;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.story-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    position: relative;
}

/* Section Labels */
.story-content p::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

/* Hide label for paragraphs without data-label attribute */
.story-content p:not([data-label])::before {
    display: none;
}

.story-content p[data-label] {
    padding-top: var(--spacing-md);
}

.story-content p:first-of-type[data-label] {
    padding-top: 0;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* First two paragraphs - lighter for context */
.story-content p:nth-of-type(1),
.story-content p:nth-of-type(2) {
    color: var(--color-text-secondary);
}

/* Last paragraph - dark for emphasis on solution/value prop */
.story-content p:nth-of-type(3) {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
}

.story-content strong {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    background-color: var(--color-background);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Contact Background SVG */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-circle {
    animation: scaleIn 2s ease-out forwards, pulse 8s ease-in-out infinite;
    transform-origin: center;
}

.contact-circle:first-of-type {
    animation-delay: 0s, 2s;
}

.contact-circle:last-of-type {
    animation-delay: 0.3s, 2.3s;
}

.contact-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawContactPath 2.5s ease-in-out forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

@keyframes drawContactPath {
    to {
        stroke-dashoffset: 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 400px;
}

/* Form Styles */
.contact-form-wrapper {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.required {
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-light);
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-white);
    border: 1.5px solid var(--color-text-primary);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 116, 73, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-base);
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(212, 116, 73, 0.2);
}

.submit-button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 116, 73, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    animation: slideIn 0.3s ease;
}

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

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--color-background);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
}

.footer-contact-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-accent);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --spacing-2xl: 4rem;
        --spacing-3xl: 5rem;
    }

    .header {
        padding: var(--spacing-sm) 0;
    }

    .nav-links {
        gap: var(--spacing-md);
    }

    .hero {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }

    .hero-title {
        margin-bottom: var(--spacing-md);
    }

    .hero-description {
        margin-bottom: var(--spacing-lg);
    }

    .about {
        padding: var(--spacing-2xl) 0;
    }

    .contact {
        padding: var(--spacing-2xl) 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .privacy-section {
        padding: var(--spacing-2xl) 0;
    }

    .contact-description {
        max-width: none;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
    }

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

    /* Reduce floating shape sizes on tablet */
    .floating-shape-1 {
        width: 80px;
        height: 80px;
    }

    .floating-shape-2 {
        width: 60px;
        height: 60px;
    }

    .floating-shape-3 {
        width: 70px;
        height: 70px;
    }

    /* Reduce section divider height */
    .section-divider {
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }

    .logo {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.9375rem;
    }

    .hero-subtitles {
        margin-bottom: var(--spacing-md);
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .about-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .story-content p {
        margin-bottom: var(--spacing-lg);
    }

    .story-content p::before {
        font-size: 0.6875rem;
    }

    .name-inputs {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
    }

    /* Further reduce floating shapes on mobile */
    .floating-shape-1 {
        width: 60px;
        height: 60px;
        opacity: 0.6;
    }

    .floating-shape-2 {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }

    .floating-shape-3 {
        width: 50px;
        height: 50px;
        opacity: 0.6;
    }

    /* Hide some complex SVG elements on very small screens for performance */
    .hero-path-2,
    .hero-path-3 {
        display: none;
    }

    .section-divider {
        height: 40px;
    }
}

/* ===================================
   Privacy Policy Page
   =================================== */

.privacy-section {
    background-color: var(--color-background);
    padding: var(--spacing-3xl) 0;
    min-height: calc(100vh - 400px);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.privacy-last-updated {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-regular);
}

.privacy-text h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.privacy-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.privacy-text ul {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    margin-top: var(--spacing-xs);
}

.privacy-text li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.privacy-text li:last-child {
    margin-bottom: 0;
}

/* ===================================
   Accessibility
   =================================== */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    /* Hide animated SVG elements for reduced motion */
    .hero-background,
    .floating-shapes,
    .contact-background,
    .section-divider {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-background: #F5F5F5;
        --color-border: #999999;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .header,
    .footer {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}
