/* TAIOS Project Specific Styles */

/* --- TEMEL YAPILANDIRMA --- */
:root {
    --bg-core: #050505;
    --bg-terminal: #0c0c0c;
    --border-active: rgba(245, 158, 11, 0.5);
    --text-code: #a3a3a3;
    --amber-primary: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.4);
    --green-primary: #10b981;
    --blue-primary: #3b82f6;
    --bg-card: #0f0f10;
    --bg-card-hover: #141415;
    --text-main: #e4e4e7;
    --text-muted: #71717a;
}

/* Arka Plan: Teknik Grid */
.blueprint-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at 50% 0%, black 30%, transparent 85%);
    z-index: -1;
    pointer-events: none;
}

/* --- DEVELOPMENT & PHASE DASHBOARD STYLES --- */

/* Timeline (Development Roadmap) */
.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 600px;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.timeline-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 80px;
}

.node-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-core);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
}

.node-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-done .node-circle {
    border-color: var(--green-primary);
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-primary);
}

.status-active .node-circle {
    border-color: var(--amber-primary);
    background: var(--amber-primary);
    color: #000;
    box-shadow: 0 0 15px var(--amber-glow);
}

.status-plan .node-circle {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.status-active .node-label {
    color: var(--amber-primary);
}

.status-done .node-label {
    color: var(--green-primary);
}

/* System Log Header */
.system-log-header {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--amber-primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

/* Phase Grid */
.phase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .phase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.phase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.phase-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    transition: background 0.3s;
}

.card-done::before {
    background: var(--green-primary);
}

.card-active::before {
    background: var(--amber-primary);
}

.card-plan::before {
    background: var(--blue-primary);
}

.card-future::before {
    background: #8b5cf6;
}

.phase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.status-tag {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.tag-done {
    color: var(--green-primary);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag-active {
    color: var(--amber-primary);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-plan {
    color: var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-future {
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.phase-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-quote {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--amber-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-main);
    border-radius: 0 8px 8px 0;
}

/* Module Grid (Phase 1 Dashboard) */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.module-card.active {
    border-color: rgba(255, 255, 255, 0.15);
}

.module-card.active:hover {
    border-color: var(--amber-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.module-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--amber-primary);
}

.module-card.pending {
    opacity: 0.6;
    border-style: dashed;
    background: transparent;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
}

.icon-asm {
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-c {
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-h {
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-wait {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filename {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.description {
    font-size: 0.85rem;
    color: var(--text-code);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tech-item {
    margin-right: 0.5rem;
}

.tech-item::before {
    content: '#';
    color: var(--amber-primary);
    opacity: 0.6;
}

.nav-path {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.path-active {
    color: var(--amber-primary);
}

.phase-header {
    border-left: 2px solid var(--amber-primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.memory-addr {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* CRT Titreme Efekti (ASCII için) */
@keyframes flicker {
    0% {
        opacity: 0.95;
    }

    5% {
        opacity: 0.8;
    }

    10% {
        opacity: 0.9;
    }

    15% {
        opacity: 0.6;
    }

    20% {
        opacity: 0.95;
    }

    100% {
        opacity: 0.95;
    }
}

.crt-flicker {
    animation: flicker 4s infinite;
    text-shadow: 0 0 8px var(--amber-glow);
}

/* ASCII Art */
.ascii-hero {
    font-family: var(--font-mono);
    font-size: 10px;
    line-height: 1.1;
    white-space: pre;
    color: var(--amber-primary);
    margin-bottom: 2rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .ascii-hero {
        font-size: 14px;
    }
}

/* Sistem Badge */
.sys-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--amber-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.blink-cursor::after {
    content: '█';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    font-size: 0.8em;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* İstatistik Kartları */
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--border-active);
    background: rgba(245, 158, 11, 0.05);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 1rem;
    text-align: center;
}

/* Özellik Çipleri (Feature Chips) */
.chip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.chip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--amber-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.chip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.chip-card:hover::before {
    opacity: 1;
}

/* Terminal Penceresi */
.terminal {
    background: var(--bg-terminal);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    font-family: var(--font-mono);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
}

.terminal-bar {
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-subtle);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-r {
    background: #ef4444;
}

.dot-y {
    background: #f59e0b;
}

.dot-g {
    background: #22c55e;
}

.terminal-content {
    padding: 1.5rem;
    color: #d4d4d4;
    font-size: 0.85rem;
    line-height: 1.7;
}

.cmd-line {
    display: flex;
    gap: 0.5rem;
}

.cmd-prompt {
    color: var(--amber-primary);
    user-select: none;
}

.cmd-text {
    color: #fff;
}

.cmd-out {
    color: #9ca3af;
    margin-bottom: 1rem;
    display: block;
}

/* Tree View */
.tree-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.tree-folder {
    color: var(--amber-primary);
    font-weight: 700;
}

.tree-file {
    color: var(--text-main);
}

/* Progress Bar */
.prog-container {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.prog-fill {
    height: 100%;
    background: var(--amber-primary);
    box-shadow: 0 0 10px var(--amber-primary);
}

/* Butonlar */
.btn-primary {
    background: var(--amber-primary);
    color: #000;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-family: var(--font-mono);
    text-decoration: none;
}

.btn-primary:hover {
    background: #ffb000;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    color: #000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: #fff;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: var(--font-mono);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

/* Animation Utilities */
.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities Replacement for Tailwind */
.taios-section {
    padding: 5rem 1.5rem;
}

.taios-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
}

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

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

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

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

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

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

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

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

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

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

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

.tracking-tight {
    letter-spacing: -0.025em;
}

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

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

.font-light {
    font-weight: 300;
}

.text-zinc-400 {
    color: #a1a1aa;
}

.text-zinc-500 {
    color: #71717a;
}

.text-zinc-600 {
    color: #52525b;
}

.text-white {
    color: #fff;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-12 {
    gap: 3rem;
}

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

.flex {
    display: flex;
}

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

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

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.h-px {
    height: 1px;
}

.flex-1 {
    flex: 1;
}

.bg-zinc-800 {
    background-color: #27272a;
}

.bg-zinc-900\/20 {
    background-color: rgba(24, 24, 27, 0.2);
}

.bg-zinc-900\/30 {
    background-color: rgba(24, 24, 27, 0.3);
}

.border-y {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

.font-mono {
    font-family: var(--font-mono);
}

.text-amber-500 {
    color: var(--amber-primary);
}

.bg-amber-500\/10 {
    background-color: rgba(245, 158, 11, 0.1);
}

.rounded {
    border-radius: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.pl-4 {
    padding-left: 1rem;
}

.ml-auto {
    margin-left: auto;
}

.border-l {
    border-left: 1px solid;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

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

.mt-12 {
    margin-top: 3rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.bg-zinc-900\/50 {
    background-color: rgba(24, 24, 27, 0.5);
}

.border {
    border: 1px solid;
}

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

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.bg-amber-500 {
    background-color: var(--amber-primary);
}

.bg-green-500 {
    background-color: #22c55e;
}

.text-green-500 {
    color: #22c55e;
}

.bg-zinc-700 {
    background-color: #3f3f46;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

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

.pb-20 {
    padding-bottom: 5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

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

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .lg\:w-auto {
        width: auto;
    }
}

/* Code Article Styles */
.asm-code-block,
.code-block {
    background-color: var(--bg-terminal);
    padding: 1.5rem;
    padding-left: 3.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    white-space: pre;
    counter-reset: line;
    position: relative;
}

.asm-code-block > span,
.code-block > span {
    display: block;
    position: relative;
}

.asm-code-block > span::before,
.code-block > span::before {
    counter-increment: line;
    content: counter(line);
    position: absolute;
    left: -2.5rem;
    width: 2rem;
    text-align: right;
    color: #4a4a4a;
    font-size: 0.75rem;
    user-select: none;
    pointer-events: none;
}

.asm-comment,
.c-comment {
    color: #6b7280;
    font-style: italic;
}

.asm-directive {
    color: #c678dd;
}

.asm-string,
.c-string {
    color: #98c379;
}

.asm-label {
    color: #e06c75;
    font-weight: bold;
}

.asm-immediate,
.c-number {
    color: #d19a66;
}

.asm-instruction,
.c-function {
    color: #61afef;
    font-weight: bold;
}

.c-keyword {
    color: #c678dd;
}

.asm-register {
    color: #e5c07b;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.article-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Table styles for Part 1 */
.overflow-x-auto {
    overflow-x: auto;
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.w-full {
    width: 100%;
}

.text-sm {
    font-size: 0.875rem;
}

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

.border-collapse {
    border-collapse: collapse;
}

.border-zinc-700 {
    border-color: #3f3f46;
}

.bg-zinc-800 {
    background-color: #27272a;
}

.text-amber-500 {
    color: var(--amber-primary);
}

table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #3f3f46;
    padding: 0.75rem;
}

th {
    background-color: #27272a;
    color: var(--amber-primary);
    font-weight: 600;
}

td {
    color: #d4d4d8;
}

/* TAIOS Logo Text */
.taios-logo-text {
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--amber-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.4));
    margin-bottom: 1rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .taios-logo-text {
        font-size: 10rem;
        letter-spacing: -0.08em;
    }
}

/* TAIOS Title - Based on notes-page-title style */
.taios-page-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.5rem;
}

.taios-page-title-sub {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--amber-primary);
    -webkit-text-fill-color: var(--amber-primary);
    background: none;
    font-weight: 400;
}

@media (min-width: 768px) {
    .taios-page-title {
        font-size: 7rem;
    }
}