/*
  Theme adapted from adelyazilim-main project.
  Date: 28.04.2026
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap');

:root {
    --brand: #ff6a3d;
    --brand-deep: #d94f27;
    --brand-soft: #ff966b;
    --sky: #63c6ff;
    --sand: #a9d8ff;
    --surface-0: #ecf4ff;
    --surface-1: #06111f;
    --surface-2: #dbe9f8;
    --panel: rgba(255, 255, 255, 0.05);
    --ink-1: #0d223a;
    --ink-3: #47607e;
    --ink-4: #7087a1;
    --line: rgba(22, 49, 82, 0.12);
    --line-dark: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: radial-gradient(circle at top left, rgba(99, 198, 255, 0.16), transparent 30%),
                radial-gradient(circle at top right, rgba(255, 106, 61, 0.1), transparent 24%),
                linear-gradient(180deg, #f3f8ff 0%, #eaf2fd 100%);
    color: var(--ink-1);
}

a {
    color: inherit;
    text-decoration: none;
}

.font-display {
    font-family: "Sora", sans-serif;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(18, 32, 51, 0.12);
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.7);
}

.section-eyebrow-dark {
    border-color: rgba(255, 255, 255, 0.12);
    color: #d2ecff;
    background: rgba(255, 255, 255, 0.06);
}

.hero-noise {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 58%);
    background-size: 96px 96px, 96px 96px, 100% 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
}

.hero-streams {
    background-image:
      linear-gradient(120deg, transparent 0%, rgba(99, 198, 255, 0.14) 18%, transparent 34%),
      linear-gradient(300deg, transparent 8%, rgba(255, 106, 61, 0.12) 24%, transparent 40%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 520px 520px, 680px 680px, 84px 84px;
    background-position: -12% 0%, 120% 100%, 0 0;
    animation: heroStreamsMove 18s linear infinite;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 100%);
}

@keyframes heroStreamsMove {
  0% { background-position: -12% 0%, 120% 100%, 0 0; }
  100% { background-position: 112% 18%, -12% 76%, 84px 84px; }
}

.main-container {
    min-height: 100vh;
    background-color: var(--surface-1);
    color: #fff;
    selection:bg-[var(--brand)] selection:text-white;
}

.fixed-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--line-dark);
    background-color: rgba(8, 15, 28, 0.78);
    backdrop-filter: blur(24px);
}

.header-content {
    margin: 0 auto;
    display: flex;
    max-width: 80rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.brand-logo .logo-box {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid var(--line-dark);
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.brand-logo .logo-text .title {
    font-family: "Sora", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.9);
}

.brand-logo .logo-text .subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.45);
}

.main-nav {
    display: none;
}
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
    }
    .main-nav a:hover {
        color: #fff;
        transition: color 0.2s;
    }
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--line-dark);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s;
}

.header-action-btn:hover {
    border-color: var(--brand);
    background-color: var(--brand);
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-1);
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.hero-section .bg-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    margin: 0 auto;
    max-width: 80rem;
    padding: 0 1.5rem;
}

.hero-content .eyebrow {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--line-dark);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--sand);
}

.hero-content h1 {
    max-width: 56rem;
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.02;
    color: #fff;
}
@media (min-width: 640px) {
    .hero-content h1 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
    .hero-content h1 { font-size: 4.5rem; }
}

.hero-content h1 .highlight {
    display: block;
    color: var(--sand);
}

.hero-content .description {
    margin-top: 2rem;
    max-width: 48rem;
    font-size: 1.125rem;
    line-height: 2rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: var(--brand);
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s;
}
.btn-primary:hover {
    background-color: var(--brand-deep);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--line-dark);
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.06);
}

.hero-stats {
    margin-top: 3.5rem;
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.stat-item {
    border-radius: 1.5rem;
    border: 1px solid var(--line-dark);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    backdrop-filter: blur(12px);
}

.stat-item .value {
    font-family: "Sora", sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: #fff;
}

.stat-item .label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.section {
    padding: 6rem 1.5rem;
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    font-family: "Sora", sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--ink-1);
}
@media (min-width: 1024px) {
    .section-heading h2 { font-size: 3rem; }
}

.section-heading p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--ink-3);
}

.services-grid {
    margin-top: 4rem;
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.service-card {
    border-radius: 1.5rem;
    border: 1px solid var(--line);
    background-color: #fff;
    padding: 2rem;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background-color: var(--surface-0);
    color: var(--brand);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-1);
}

.service-card p {
    margin-top: 0.75rem;
    color: var(--ink-3);
}

.products-section {
    background-color: #08101c;
    color: #fff;
}

.product-card {
    border-radius: 1.5rem;
    border: 1px solid var(--line-dark);
    background-color: #111927;
    padding: 2rem;
}

.product-card .accent {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sky);
}

.product-card h3 {
    margin-top: 1rem;
    font-family: "Sora", sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
}

.product-card p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-card .btn-primary {
    margin-top: 1.5rem;
}

.contact-section {
    background-color: var(--surface-1);
    color: #fff;
}

.footer {
    padding: 4rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--ink-4);
}
