:root {
  --iphone-w: 393px;
  --iphone-h: 852px;
  --brand: #0ea5e9;
  --brand-dark: #0369a1;
  --bg-soft: #f8fafc;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: linear-gradient(180deg, #e2e8f0 0%, #f8fafc 40%, #e2e8f0 100%);
  min-height: 100vh;
}

.iphone-shell {
  width: var(--iphone-w);
  height: var(--iphone-h);
  border-radius: 54px;
  padding: 12px;
  background: #0f172a;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  position: relative;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 34px;
  background: #020617;
  border-radius: 999px;
  z-index: 20;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: white;
}

.phone-title {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mock-scroll {
  scrollbar-width: none;
}

.mock-scroll::-webkit-scrollbar {
  display: none;
}
