@font-face {
  font-family: 'Roobert Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Helvetica'), local('sans-serif');
  size-adjust: 103%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

:host {
  /* Brand Colors - from Figma */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-card: #171717;
  --color-bg-card-hover: #1c1c1c;
  --color-bg-input: #171717;

  /* Text Colors - Figma neutral-50 / neutral-200 */
  --color-text-primary: #fafafa;
  --color-text-secondary: #e5e5e5;
  --color-text-muted: #a3a3a3;
  --color-text-dim: #656565;

  /* Gradient - Figma: sky-600 -> emerald-400 */
  --gradient-primary: linear-gradient(100deg, rgb(2, 132, 199) 15%, rgb(49, 196, 141) 95%);
  --gradient-hero-bg: radial-gradient(ellipse at 50% 80%, rgba(2, 132, 199, 0.12) 0%, rgba(49, 196, 141, 0.06) 40%, transparent 70%);
  --gradient-cta-bg: radial-gradient(ellipse at center, rgba(49, 196, 141, 0.15) 0%, rgba(2, 132, 199, 0.08) 50%, transparent 100%);
  --gradient-section-divider: radial-gradient(ellipse at center, rgba(49, 196, 141, 0.06) 0%, transparent 70%);

  /* Accent Colors */
  --color-accent-green: #31c48d;
  --color-accent-blue: #0284c7;
  --color-accent-muted: rgba(49, 196, 141, 0.15);

  /* Borders */
  --color-border: #262626;
  --color-border-card: #262626;
  --color-border-input: #656565;

  /* Badge */
  --color-badge-bg: rgba(49, 196, 141, 0.1);
  --color-badge-border: rgba(49, 196, 141, 0.3);
  --color-badge-text: #31c48d;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 40px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Roobert', 'Roobert Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 48px;
  --font-size-5xl: 64px;
  --font-size-6xl: 80px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.4);

  /* Layout */
  --max-width: 1172px;
  --max-width-narrow: 968px;
  --content-padding: 24px;
}

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

body,
:host {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ─── Section ─── */

.y3pVGzaB7utNBRUZQ28Q {
  width: 100%;
  padding: 80px 0;
}

.Caq61wVUEJm6cbgmFtR6 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ─── Header ─── */

.o99UW96d2pBbwIeIAHcC {
  text-align: center;
  max-width: 800px;
}

.XzkTs8nbV_h35gc_om8j {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  color: var(--color-text-primary);
}

.ZgTZJaFh94_Wrv20wOP7 {
  background: linear-gradient(115deg, rgb(56, 189, 248) 9%, rgb(73, 235, 174) 93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Grid ─── */

.qdQp7zmvt_Gq45zq37LV {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

/* ─── Card ─── */

.QJl_wje9Yg5sVB3hQfMy {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s ease;
  outline: none;
}

.QJl_wje9Yg5sVB3hQfMy:hover,
.QJl_wje9Yg5sVB3hQfMy:focus-within {
  border-color: #555;
}

.QJl_wje9Yg5sVB3hQfMy:focus-visible {
  outline: 2px solid var(--color-accent-green, #49ebae);
  outline-offset: 2px;
}

.IbefJakz9nZXkU3gsHCy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mEqAUTTCZmamog6yrWId {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-green);
  align-self: flex-start;
}

/* ─── Phone Frame ─── */

.lidKeNwCC_lstwV86Iha {
  position: relative;
  width: 100%;
  max-width: 210px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

.qj9qXtuadP6oyGsOLt9y,
._Ow3sPGlHsSKtLm0fIT8 {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
}

.qj9qXtuadP6oyGsOLt9y {
  top: 0;
  height: 50%;
}

._Ow3sPGlHsSKtLm0fIT8 {
  bottom: 0;
  height: 52%;
}

.qj9qXtuadP6oyGsOLt9y img,
._Ow3sPGlHsSKtLm0fIT8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Caption Overlay ─── */

.QK_7Et7acLSBiCKaBvT9 {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  z-index: 2;
  pointer-events: none;
}

/* Ali Abdaal caption style */
.Mhix1ShflHtRV0HH2My6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: rgba(135, 135, 135, 0.85);
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.K6__BV85Qw5943KhcDuO {
  color: #000;
  background: none;
}

/* Studio McGee caption style */
.AEhOiQe9WtuxBMrxDsvQ {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.kZ9GriHwXBKhTT3NIJlu {
  color: #fff3c3;
  font-style: italic;
}

/* Jay Shetty caption style */
.SeWFEmzWeWFN6kNUtUmX {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

/* ─── Creator ─── */

.SkeEUGPGllMkVw7V7Gpv {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.Zk0S_eA1u3MNXZlzfqzm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.KNzKxcY35NqA1m5JbR87 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .qdQp7zmvt_Gq45zq37LV {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .XzkTs8nbV_h35gc_om8j {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (max-width: 768px) {
  .y3pVGzaB7utNBRUZQ28Q {
    padding: 64px 0;
  }

  .Caq61wVUEJm6cbgmFtR6 {
    gap: 40px;
  }

  .XzkTs8nbV_h35gc_om8j {
    font-size: 32px;
    line-height: 40px;
  }

  .qdQp7zmvt_Gq45zq37LV {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .QJl_wje9Yg5sVB3hQfMy {
    padding: 16px 14px;
  }

  .KNzKxcY35NqA1m5JbR87 {
    font-size: 15px;
  }

  .Zk0S_eA1u3MNXZlzfqzm {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .XzkTs8nbV_h35gc_om8j {
    font-size: 26px;
    line-height: 34px;
  }

  .qdQp7zmvt_Gq45zq37LV {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .QJl_wje9Yg5sVB3hQfMy {
    padding: 12px 10px;
    gap: 10px;
  }

  .mEqAUTTCZmamog6yrWId {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .KNzKxcY35NqA1m5JbR87 {
    font-size: 13px;
  }

  .Mhix1ShflHtRV0HH2My6,
  .AEhOiQe9WtuxBMrxDsvQ,
  .SeWFEmzWeWFN6kNUtUmX {
    font-size: 10px;
  }
}

