/* ========================================
   CREATIF — MAIN STYLESHEET
   Awwwards / Site of the Day seviyesi production CSS
   ======================================== */

@import url('tokens.css');

/* === CSS RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Images across the site carry hardcoded width/height attributes (good for
   CLS), but nothing constrained them to their container — on narrow
   viewports they overflowed and stretched the whole layout. height:auto
   keeps the intrinsic aspect ratio from the attributes. */
img, video {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-fume);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
}

body.is-loading { overflow: hidden; }

/* Skip-to-content link: off-screen until keyboard focus reveals it. */
.skip-to-content {
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: 10000;
  background: var(--color-navy-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip-to-content:focus {
  top: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-primary);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--fg-secondary);
  max-width: 65ch;
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--fg-secondary);
  max-width: 60ch;
}

.text-display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.text-h1 { font-size: var(--text-h1); }
.text-h2 { font-size: var(--text-h2); }
.text-h3 { font-size: var(--text-h3); }

.metric {
  font-family: var(--font-mono);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-primary);
}

.metric-sm { font-size: var(--text-3xl); }
.metric-lg { font-size: var(--text-7xl); }

.label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fg-muted);
}

.caption {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--fg-muted);
}

.highlight {
  color: var(--color-red-600);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(224, 32, 32, 0.15);
  border-radius: 2px;
  z-index: -1;
}

.highlight-blue { color: var(--color-navy-700); }
.highlight-blue::after { background: rgba(32, 80, 152, 0.15); }

/* === LINKS === */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover { color: var(--color-red-600); }

.link-underline {
  position: relative;
  text-decoration: none;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.link-underline:hover::after { transform: scaleX(1); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: var(--tracking-normal);
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--color-navy-700);
  outline-offset: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--glass-highlight), var(--shadow-tint-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-red-600), var(--color-orange-600));
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--glass-highlight), var(--shadow-tint-red);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  backdrop-filter: var(--glass-blur-sm);
  color: var(--color-navy-900);
  border: 1px solid rgba(16, 32, 56, 0.14);
  box-shadow: var(--glass-highlight), var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--color-navy-900);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--glass-highlight), var(--shadow-soft-lg);
}

.btn-secondary:active { transform: translateY(-1px); }

.btn-accent {
  background: linear-gradient(135deg, var(--color-red-600), var(--color-orange-600));
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--glass-highlight), var(--shadow-tint-red);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--glass-highlight), var(--shadow-tint-blue);
}

.btn-accent:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--color-navy-900);
  border: none;
  box-shadow: none;
  padding: var(--space-3) var(--space-4);
}

.btn-ghost:hover {
  color: var(--color-red-600);
  transform: none;
  box-shadow: none;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-red-600);
  transform: translateX(-50%);
  transition: width var(--duration-normal) var(--ease-out);
}

.btn-ghost:hover::after { width: 100%; }

.btn-lg { padding: var(--space-5) var(--space-10); font-size: var(--text-lg); }
.btn-sm { padding: var(--space-3) var(--space-6); font-size: var(--text-sm); }

.btn-icon { display: inline-flex; align-items: center; justify-content: center; }
.btn-icon svg { width: 20px; height: 20px; transition: transform var(--duration-fast) var(--ease-spring); }
.btn:hover .btn-icon svg { transform: translateX(4px); }

/* === BRUTAL CARDS === */
.brutal-card {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), var(--shadow-soft);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.brutal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-highlight), var(--shadow-soft-lg);
}

.brutal-card-accent {
  border-color: rgba(224, 32, 32, 0.35);
  box-shadow: var(--glass-highlight), var(--shadow-tint-red);
}

.brutal-card-accent:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-highlight), var(--shadow-tint-red);
}
}

.brutal-card-blue {
  border-color: var(--color-navy-700);
  box-shadow: 8px 8px 0px 0px var(--color-navy-700);
}

.brutal-card-blue:hover {
  box-shadow: 12px 12px 0px 0px var(--color-navy-700);
}

/* === FORMS === */
.form-group { margin-bottom: var(--space-6); }

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--fg-primary);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(16, 32, 56, 0.14);
  border-radius: 16px;
  padding: var(--space-4) var(--space-5);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 4px 16px rgba(16, 32, 56, 0.05);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-red-600);
  box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.12), 0 8px 24px rgba(16, 32, 56, 0.08);
  background: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--fg-muted); }

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

.form-error {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-2);
  display: none;
}

.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-textarea { border-color: var(--color-error); }

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-8); }
}

.section {
  padding: var(--space-20) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: var(--space-24) 0; }
}

@media (min-width: 1024px) {
  .section { padding: var(--space-32) 0; }
}

.section-dark {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark .lead { color: var(--fg-on-dark); }

.section-dark .label { color: var(--color-gray-400); }

.grid { display: grid; gap: var(--space-6); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* === ANIMATION UTILITIES === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes lineDraw {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.animate-fade-in-up {
  animation: fadeInUp var(--duration-slower) var(--ease-out) forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn var(--duration-slow) var(--ease-out) forwards;
  opacity: 0;
}

.animate-slide-in-left {
  animation: slideInLeft var(--duration-slower) var(--ease-out) forwards;
  opacity: 0;
}

.animate-slide-in-right {
  animation: slideInRight var(--duration-slower) var(--ease-out) forwards;
  opacity: 0;
}

.animate-scale-in {
  animation: scaleIn var(--duration-normal) var(--ease-spring) forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }
.delay-6 { animation-delay: 600ms; }
.delay-7 { animation-delay: 700ms; }
.delay-8 { animation-delay: 800ms; }

/* === SMOOTH SCROLL === */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* === POWER ANIMATIONS === */

/* Magnetic Button Effect */
.btn-magnetic {
  position: relative;
  transition: transform .3s var(--ease-spring);
}
.btn-magnetic:hover {
  transform: scale(1.03);
}
.btn-magnetic:active {
  transform: scale(0.97);
}

/* Text Reveal (clip) */
@keyframes textReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.text-reveal {
  overflow: hidden;
}
.text-reveal.is-visible {
  animation: textReveal .8s var(--ease-out) forwards;
}

/* Gradient Shift */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-animate {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: float 3s ease-in-out infinite; }
.float-slow { animation: float 5s ease-in-out infinite; }
.float-fast { animation: float 2s ease-in-out infinite; }

/* Glow Pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(224, 32, 32, 0.2); }
  50% { box-shadow: 0 0 40px rgba(224, 32, 32, 0.4), 0 0 60px rgba(224, 32, 32, 0.1); }
}
.glow-pulse { animation: glowPulse 2s ease-in-out infinite; }

/* Border Draw */
@keyframes borderDraw {
  0% { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
  25% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
  50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0); }
  75% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

/* Stagger children */
.stagger-children.is-visible > * {
  opacity: 0;
  animation: fadeInUp .5s var(--ease-out) forwards;
}
.stagger-children.is-visible > *:nth-child(1) { animation-delay: .05s; }
.stagger-children.is-visible > *:nth-child(2) { animation-delay: .1s; }
.stagger-children.is-visible > *:nth-child(3) { animation-delay: .15s; }
.stagger-children.is-visible > *:nth-child(4) { animation-delay: .2s; }
.stagger-children.is-visible > *:nth-child(5) { animation-delay: .25s; }
.stagger-children.is-visible > *:nth-child(6) { animation-delay: .3s; }
.stagger-children.is-visible > *:nth-child(7) { animation-delay: .35s; }
.stagger-children.is-visible > *:nth-child(8) { animation-delay: .4s; }

/* Counter flip */
@keyframes counterFlip {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.counter-flip { display: inline-block; }

/* Line grow */
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.line-grow {
  transform-origin: left;
  transform: scaleX(0);
}
.line-grow.is-visible {
  animation: lineGrow .8s var(--ease-out) forwards;
}

/* Parallax tilt on hover */
.tilt-hover {
  transition: transform .3s var(--ease-out);
  transform-style: preserve-3d;
}
.tilt-hover:hover {
  transform: perspective(800px) rotateY(2deg) rotateX(-2deg) scale(1.02);
}

/* Shimmer loading */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.15) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Blur fade in */
@keyframes blurFadeIn {
  from { filter: blur(10px); opacity: 0; }
  to { filter: blur(0); opacity: 1; }
}
.blur-fade-in {
  animation: blurFadeIn .6s var(--ease-out) forwards;
}

/* Scale bounce */
@keyframes scaleBounce {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.scale-bounce {
  animation: scaleBounce .5s var(--ease-spring) forwards;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* === CURSOR (Custom) === */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.2s ease-out, height 0.2s ease-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-red-600);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-red-600);
  background: transparent;
  transition-duration: 0.3s;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--color-navy-700);
  background: rgba(224, 32, 32, 0.1);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--color-navy-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-red-600); }
::-webkit-scrollbar-corner { background: var(--bg-primary); }

/* === SELECTION === */
::selection {
  background: var(--color-red-600);
  color: var(--color-white);
}

/* === UTILITY CLASSES === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

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

/* === GLASS UTILITIES (ajans cam dili) === */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), var(--shadow-soft);
  border-radius: var(--radius-card);
}
.glass-strong {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), var(--shadow-soft-lg);
  border-radius: var(--radius-card);
}
.glass-dark {
  background: var(--glass-bg-dark);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--glass-highlight), var(--shadow-soft-lg);
  border-radius: var(--radius-card);
  color: var(--fg-on-dark);
}

/* === FLOATING ORBS (marka renklerinde ışık topları) === */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.orb-orange { background: rgba(224, 80, 16, 0.45); }
.orb-red { background: rgba(224, 32, 32, 0.35); }
.orb-blue { background: rgba(32, 80, 152, 0.45); }
.orb-float { animation: orbFloat 12s ease-in-out infinite alternate; }
.orb-float-slow { animation: orbFloat 18s ease-in-out infinite alternate-reverse; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, -8%) scale(1.12); }
}

/* === AJANS HAREKET DİLİ === */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shineSweep {
  from { transform: translateX(-120%) skewX(-18deg); }
  to { transform: translateX(240%) skewX(-18deg); }
}
.animate-float { animation: floatY 6s ease-in-out infinite; }
.animate-pop { animation: popIn var(--duration-slower) var(--ease-out) forwards; opacity: 0; }

/* Parlak süpürme (birincil butonlarda) */
.btn-primary, .btn-accent { overflow: hidden; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28); }
.btn-primary::before, .btn-accent::before {
  content: ''; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%) skewX(-18deg);
}
.btn-primary:hover::before, .btn-accent:hover::before { animation: shineSweep .8s var(--ease-out); }

/* === MOBİL DOKUNMATİK (ui-ux-pro-max: touch 44px, tap-highlight) === */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.nav-toggle { min-width: 44px; min-height: 44px; }
.compare { position: relative; }
.compare::after {
  content: '→ kaydırın'; display: block; text-align: right;
  font-family: var(--font-mono); font-size: var(--text-xs); color: var(--fg-muted);
  padding: 8px 4px 0; letter-spacing: .1em;
}
@media (min-width: 1100px) { .compare::after { display: none; } }

/* === PRINT === */
@media print {
  .no-print { display: none !important; }
  body { background: white; color: black; }
  .btn { border: 2px solid black !important; box-shadow: none !important; }
}