@font-face {
  font-family: 'Inter Preview';
  src: url('../../assets/fonts/inter-preview.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Preview';
  src: url('../../assets/fonts/roboto-preview.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Web';
  src: url('../../assets/fonts/segoeui-web-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Web';
  src: url('../../assets/fonts/segoeui-web-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Web';
  src: url('../../assets/fonts/segoeui-web-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-stack-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-stack-inter: 'Inter Preview', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-stack-roboto: 'Roboto Preview', Roboto, 'Noto Sans', 'Droid Sans', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-stack-segoe: 'Segoe UI Variable Text', 'Segoe UI Variable Display', 'Segoe UI Variable', 'Segoe UI Web', 'Segoe UI', sans-serif;
  --font-ui-sans: var(--font-stack-system);
}

html[data-font-profile='inter'] {
  --font-ui-sans: var(--font-stack-inter);
}

html[data-font-profile='roboto'] {
  --font-ui-sans: var(--font-stack-roboto);
}

html[data-font-profile='segoe'] {
  --font-ui-sans: var(--font-stack-segoe);
}

/* ===== Global Reset & iPad Frame ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: var(--font-ui-sans);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.ipad-frame {
  width: 1376px;
  height: 1024px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===== Home Indicator ===== */
.home-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.home-indicator-bar {
  width: 134px;
  height: 5px;
  background: rgba(0,0,0,0.2);
  border-radius: 100px;
}
