/* Narun landing — shared base */
@font-face { font-family: "Outfit"; font-weight: 300; src: url("fonts/Outfit-Light.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Outfit"; font-weight: 400; src: url("fonts/Outfit-Regular.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Outfit"; font-weight: 500; src: url("fonts/Outfit-Medium.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Outfit"; font-weight: 600; src: url("fonts/Outfit-SemiBold.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Outfit"; font-weight: 700; src: url("fonts/Outfit-Bold.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Outfit"; font-weight: 900; src: url("fonts/Outfit-Black.ttf") format("truetype"); font-display: swap; }

:root {
  --bg: #000;
  --surface-1: #111113;
  --surface-2: #1a1a1c;
  --surface-3: #232326;
  --line: #2a2a2c;
  --fg: #fff;
  --fg-2: #c7c7cc;
  --fg-3: #8e8e93;
  --fg-4: #5a5a5f;
  --lime: #C8FF00;
  --blue: #0A84FF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: "Outfit", -apple-system, system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Phone frame */
.phone { position: relative; }
.phone-frame { position: relative; display: block; width: 100%; z-index: 2; pointer-events: none; }
.phone-screen {
  position: absolute;
  top: 2.93%; left: 5.33%;
  width: 89.33%; height: 94.13%;
  overflow: hidden;
  border-radius: 13.5% / 6.6%;
  z-index: 1;
}
.phone-screen img { display: block; width: 100%; height: 100%; object-fit: cover; }
