/* Akyurt Media — Apple-inspired design system (open-design/apple)
 * SF Pro typography, generous white space, single restrained blue accent.
 * Paste-once token layer; reference everything via var(--name). */
:root {
  /* Surfaces */
  --bg: #ffffff;
  --surface: #f5f5f7;
  --surface-warm: #fbfbfd;
  /* Foreground ramp */
  --fg: #1d1d1f;
  --fg-2: #424245;
  --muted: #6e6e73;
  --meta: #86868b;
  /* Borders */
  --border: #d2d2d7;
  --border-soft: #e8e8ed;
  /* Accent (Apple Action Blue — the only chromatic move) */
  --accent: #0071e3;
  --accent-on: #ffffff;
  --accent-hover: #0077ed;
  --accent-active: #0066cc;
  /* Status */
  --success: #16a34a;
  --warn: #eab308;
  --danger: #dc2626;
  /* Type */
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Monaco, Consolas, monospace;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 17px;
  --text-lg: 21px;
  --text-xl: 28px;
  --text-2xl: 40px;
  --text-3xl: 56px;
  --text-4xl: 80px;
  --leading-body: 1.47;
  --leading-tight: 1.05;
  --tracking-display: -0.015em;
  /* Spacing */
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px;  --space-8: 32px; --space-12: 48px;
  --section-y-desktop: 100px;
  --section-y-tablet: 64px;
  --section-y-phone: 40px;
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 980px;
  /* Elevation / motion */
  --elev-ring: 0 0 0 1px var(--border);
  --elev-raised: 0 12px 32px rgba(0, 0, 0, 0.08);
  --focus-ring: 0 0 0 4px color-mix(in oklab, var(--accent), transparent 65%);
  --motion-fast: 150ms;
  --motion-base: 220ms;
  --ease-standard: cubic-bezier(0.28, 0, 0.22, 1);
  --container-max: 1024px;
  /* Aliases used by index.html */
  --sans: var(--font-body);
  --display: var(--font-display);
  --line: var(--border);
  --ink: var(--fg);
  --ink-secondary: var(--fg-2);
  --ink-muted: var(--muted);
  --ink-faint: var(--meta);
  --bg-secondary: var(--surface);
  --bg-tertiary: var(--surface-warm);
  --accent-hover: #0077ed;
  --accent-active: #0066cc;
  --paper: #ffffff;
  --radius-card: var(--radius-lg);
  --shadow-card: var(--elev-raised);
}

/* ---- Base elements ---- */
* , *::before, *::after { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: var(--tracking-display); font-weight: 600; color: var(--fg); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Apple capsule button ---- */
.btn-apple {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--accent-on);
  font-size: var(--text-sm); font-weight: 500;
  border: none; border-radius: var(--radius-pill);
  padding: 12px 22px; cursor: pointer;
  transition: background var(--motion-fast) var(--ease-standard);
}
.btn-apple:hover { background: var(--accent-hover); text-decoration: none; }
.btn-apple:active { background: var(--accent-active); }
.btn-apple:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* ---- Card / surface ---- */
.card-apple {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-raised);
}
