/* Premium, minimal aesthetic inspired by Apple web styling */
:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #0c0d10;
  --muted: #5b6270;
  --accent: #0a84ff;
  --accent-2: #5e5ce6;
  --glow: rgba(10, 132, 255, 0.24);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-xl: 32px;
  --border: 1px solid rgba(12, 13, 16, 0.08);
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  --card-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, #e7efff 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 0%, #f0eefc 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 247, 0.92),
    rgba(245, 245, 247, 0.72)
  );
  border-bottom: var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(10, 132, 255, 0.3);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
  background: rgba(12, 13, 16, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 18px 36px rgba(10, 132, 255, 0.28);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(12, 13, 16, 0.2);
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(10, 132, 255, 0.32);
}

.button.ghost:hover {
  background: rgba(12, 13, 16, 0.06);
  border-color: rgba(12, 13, 16, 0.28);
}

.hero {
  padding: 104px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.device {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
  border-radius: var(--radius-lg);
  padding: 28px;
  border: var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.device::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(10, 132, 255, 0.16), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.device-card {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  border: var(--border);
}

.device-card h3 {
  margin: 0 0 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.25);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.stat-row {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.stat {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: var(--border);
}

.stat strong {
  font-size: 24px;
}

.cta {
  padding: 64px 0 96px;
  text-align: center;
}

.cta-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.14), rgba(94, 92, 230, 0.1));
  border: var(--border);
  box-shadow: var(--shadow);
}

.footer {
  padding: 48px 0 64px;
  border-top: var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-hero {
  padding: 88px 0 48px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 12px;
}

.content {
  max-width: 860px;
}

.content h3 {
  margin-top: 28px;
}

.content ul {
  padding-left: 20px;
  color: var(--muted);
}

.content li {
  margin-bottom: 8px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.support-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.support-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: var(--border);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
