@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 ─── */

.hCRhMgk11f4pIOklNTP2 {
  position: relative;
  width: 100%;
  padding: 148px 0 64px;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.bqQOjNAfTrV_8bkKNRp8 {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* ─── Header ─── */

.BCeygPIPb65ZVLOzBC_L {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

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

/* ─── Billing Toggle ─── */

.ZlGjfClswbitNCjSjo5C {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 220px;
}

.ztcAsyAOOV7r1XZ7c5Kv {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  padding: 0;
}

.BAyCHqDY2zsk3mdkXsU6 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  padding: 4px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.5;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
}

.LoslT4lORCtB4mqWgIOt {
  background: #404040;
  color: var(--color-text-secondary);
}

.B5ozGtLJsONJvpR4jj6r {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  background: linear-gradient(94.35deg, rgb(56, 189, 248) 18%, rgb(73, 235, 174) 111%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* ─── Pricing Cards Grid ─── */

.YGK6UdJDNyYBmoi46Q4Z {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

/* ─── Individual Card ─── */

.wS6Ki5SFJCjCmrumPFyi {
  width: 400px;
  height: auto;
  min-height: 680px;
  padding: 24px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0px 4px 4px -1px rgba(0, 0, 0, 0.12), 0px 2px 2px -2px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.aPUyekrszka2pN7UYZAd {
  border: 1.5px solid transparent;
  background-image: linear-gradient(var(--color-bg-primary), var(--color-bg-primary)),
    linear-gradient(160deg, rgba(2, 132, 199, 0.7) 0%, rgba(49, 196, 141, 0.7) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ─── Card Header ─── */

.YGSsHQsrNF2_ZVzDJ2jK {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.fzzs_6Rjy2wRwiWn4qss {
  display: flex;
  align-items: center;
  gap: 10px;
}

.J9SqWvW75p_ZM0dhvNQW {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.ZFH_VkNlDPuKzvnYgtn9 {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-green);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.5;
}

.rOsLCuUIcfal4BsHbeeL {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ─── Price Section ─── */

.Kcd2xolp_mzgCgTwsHue {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

._eUAj0YBv0jhDQ7gDguO {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.LDEF1r6hXpgyZrSq1v7Q {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.fJUZais67Uj012fd3_d9 {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  color: var(--color-text-secondary);
}

.OVLs3twSlvgh0PWrfImm {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  background: linear-gradient(125.9deg, rgb(56, 189, 248) 7.94%, rgb(73, 235, 174) 66.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brjR0muFBLVTWJEpcSkF {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #e5e7eb;
  text-align: center;
}

.gXRwYnH8GtQiEVEOXyAu {
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 8px;
}

.O_8Rbt2OiIysqPVWxoOL {
  display: flex;
  align-items: center;
  gap: 12px;
}

.KePtCj6qA1bg03RXLBFg {
  flex: 1;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #e5e7eb;
}

.pv0wrstoS9lf_AZ7PLgf {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-text-muted);
  cursor: pointer;
}

/* ─── Tooltip ─── */

.oH1q9xvIpzfrrKgRGKD5 {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.X6Mk9jXfckhoeajilQhd {
  position: absolute;
  bottom: calc(100% + 10px);
  right: -8px;
  width: 260px;
  padding: 12px 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f5f5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.X6Mk9jXfckhoeajilQhd::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.oH1q9xvIpzfrrKgRGKD5:hover .X6Mk9jXfckhoeajilQhd {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── AI Credits Dropdown ─── */

.SwwZLIdTPdL7mLinTY57 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 12px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  margin-bottom: 12px;
}

.xGtSvoTxKEHZvl_ov25j {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-secondary);
}

.HPLIhunSp6m3HtH6SmBk {
  flex: 1;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.P0IQlCAT0x_O0MHHnYzu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.P0IQlCAT0x_O0MHHnYzu svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
}

/* ─── Quantity Selector ─── */

.oiUWD6kwI8Wg3PuSLpiA {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.dWzYWqHX4sNDw8a022pc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.X2oQrPSxxknRCdmoiz3S {
  display: flex;
  align-items: center;
  gap: 12px;
}

.HtQDTkPxEI7G5SiJ0NNg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.HtQDTkPxEI7G5SiJ0NNg:hover:not(.CxaqXh1nxdgnQefEdUX9) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.CxaqXh1nxdgnQefEdUX9 {
  opacity: 0.3;
  cursor: not-allowed;
}

.eEFxKLpf9Nm_x8sD6HGp {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  min-width: 24px;
  text-align: center;
}

/* ─── CTA Button ─── */

.FWtLjRTUoDGqehtEuBoU {
  display: block;
  width: 100%;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  border: none;
  margin-bottom: 20px;
}

.FWtLjRTUoDGqehtEuBoU:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.Kqz76VnFRrs8QRpVeNKx {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.exNUe9z3GOqSHPytmZ50 {
  background: #0284c7;
  color: white;
}

.tHGEt1AZsAjQ44At3Qgm {
  background: #ffffff;
  color: #0a0a0a;
}

/* ─── Feature List ─── */

.naAe_KqLsZ6xxHZ_I__e {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  flex: 1;
}

.fFxiiHlCMBmIi8olkrF0 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vCRbXSpt4up79EMg8UaA {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.q5LV8j7W_tXs7ey4qfX0 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.HKIWaTYSwEGjXoTZo9Jk {
  font-weight: 600;
}

/* ─── Horizontal Free Card ─── */

.wLrMH9xvGlH2xRccOE8A {
  max-width: 816px;
  margin: 0 auto;
  padding: 24px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0px 4px 4px -1px rgba(0, 0, 0, 0.12), 0px 2px 2px -2px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 155px;
}

.xEYvZUmmfiMGMmS2R33w {
  display: flex;
  flex-direction: column;
  width: 252px;
  flex-shrink: 0;
}

.__9Y7zv7Joa5TqdwK0Vk {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* ─── Background Gradient ─── */

.dz5TknVFe67RshfhqvtI {
  position: absolute;
  top: 380px;
  left: -4%;
  right: -4%;
  height: 673px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.ycvV3LcOTrM558kJQ_NI {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 432px;
  height: 572px;
  border-radius: 50%;
  background: #0284C7;
  opacity: 0.45;
  filter: blur(80px);
}

.ajLUjauUny5OhxDE0pu2 {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 524px;
  height: 505px;
  border-radius: 50%;
  background: #31C48D;
  opacity: 0.45;
  filter: blur(80px);
}

.pbLOfzLpkw5Nnd2CYwyK {
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─── */

@media (max-width: 1280px) {
  .YGK6UdJDNyYBmoi46Q4Z {
    flex-wrap: wrap;
  }

  .wS6Ki5SFJCjCmrumPFyi {
    width: calc(50% - 8px);
    height: auto;
    min-height: 500px;
  }
}

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

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

  .YGK6UdJDNyYBmoi46Q4Z {
    flex-direction: column;
    align-items: center;
  }

  .wS6Ki5SFJCjCmrumPFyi {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: auto;
  }

  .wLrMH9xvGlH2xRccOE8A {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    max-width: 400px;
  }

  .xEYvZUmmfiMGMmS2R33w {
    width: 100%;
  }

  .__9Y7zv7Joa5TqdwK0Vk {
    gap: 4px;
  }

  .wLrMH9xvGlH2xRccOE8A .Kcd2xolp_mzgCgTwsHue {
    margin-bottom: 12px;
  }

  .wLrMH9xvGlH2xRccOE8A .FWtLjRTUoDGqehtEuBoU {
    margin-bottom: 12px;
  }
}

