@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;
  }
}

/* ─── Section ─── */

.vWRrxSYnUYNOgAMTArSm {
  position: relative;
  width: 100%;
  padding: var(--space-4xl) 0;
  background-color: var(--color-bg-primary);
}

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

/* ─── Header Row (title + collapse) ─── */

.FOAg0mqD3r8vWU3ySCIh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.r9aUdPzdCH8fpixR9kkN {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
  color: var(--color-text-primary);
}

.ulbeDJXxOQDn_VCXI7zu {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ulbeDJXxOQDn_VCXI7zu:hover {
  color: var(--color-text-secondary);
  border-color: var(--color-text-muted);
}

/* ─── Desktop Table (hidden on mobile) ─── */

.MJjPUOSvaa0QOTwV0k7x {
  display: block;
}

/* ─── Mobile Layout (hidden on desktop) ─── */

.YigdAmMattS1pmkm0OsS {
  display: none;
}

/* ─── Table Wrapper ─── */

.GYwdLNDQD6oJhgE4sGPw {
  width: 100%;
}

/* ─── Table ─── */

.NkYjygOX6k0l6_r3qJ3S {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* ─── Column widths ─── */

._99PL9eK5siWxXqIaxYW {
  width: 260px;
}

/* ─── Sticky Header ─── */

.nDuOtRqHyjr20fW0o5C0 th {
  position: sticky;
  z-index: 10;
  background-color: var(--color-bg-primary);
}

/* Row 1: Plan names + prices */
.jjqJEpAJlB_j1cUrO_kK th {
  top: 60px;
  padding: 16px 12px 8px;
  vertical-align: bottom;
  border-bottom: none;
}

/* Row 2: CTA buttons */
.Zed9_jE1iWvU0OF7GmLr th {
  top: 134px;
  padding: 0 12px 12px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

/* Row 3: Pricing label */
.framyUF0HaRU0fF7epY0 th {
  top: 196px;
  border-bottom: 1px solid var(--color-border);
}

/* ─── Billing Toggle (in first column of header) ─── */

.nYUfATy9DCsr2_vmFDbD {
  text-align: left;
  vertical-align: bottom !important;
  padding-bottom: 0 !important;
}

.N5jxyGg8VBbcqyGKZuIO {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.qKIp_3qRff0Yp2o9tTqo {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.4;
}

.kNlclRLar2kY0FYIVcGs {
  background: var(--color-text-primary);
  color: var(--color-bg-primary);
  font-weight: 600;
}

.qKIp_3qRff0Yp2o9tTqo:hover:not(.kNlclRLar2kY0FYIVcGs) {
  color: var(--color-text-secondary);
}

/* ─── Plan Header Cells ─── */

.rwuLb0UF2iAWOAzSuazG {
  text-align: center;
  background-color: var(--color-bg-primary);
}

.lc1mWsbdutZfbsj2OPTb {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.08) 0%, rgba(2, 132, 199, 0.02) 100%);
  border-left: 1px solid rgba(2, 132, 199, 0.15);
  border-right: 1px solid rgba(2, 132, 199, 0.15);
  border-top: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.UicgpXmx66MBFTePV8oU {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.WbuXdPUMmv5moQHleiAK {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.W4MSKRrhhL1KTYhfyEFh {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-dim);
}

/* ─── CTA Row ─── */

.IKVItAHILOFsafqDzOr5 {
  text-align: left;
  vertical-align: middle !important;
  background-color: var(--color-bg-primary);
}

.JGUeNiXDiiBsONTuOr_F {
  text-align: center;
  background-color: var(--color-bg-primary);
}

.Urk63tz9g_hb20DJIN8R {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.02) 0%, transparent 100%);
  border-left: 1px solid rgba(2, 132, 199, 0.15);
  border-right: 1px solid rgba(2, 132, 199, 0.15);
}

.eDyxXyXajiTOPEIzs7Ht {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  min-width: 120px;
}

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

.HwrjN1143y7n3p4PGkOI:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text-primary);
}

.MJqdfeq5smlI8W5VWCmR {
  color: var(--color-bg-primary);
  background: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.MJqdfeq5smlI8W5VWCmR:hover {
  background: var(--color-text-secondary);
  border-color: var(--color-text-secondary);
}

.Ku5X4_XkE5gYmZmZJA06 {
  color: var(--color-text-primary);
  background: var(--gradient-primary);
  border: none;
}

.Ku5X4_XkE5gYmZmZJA06:hover {
  opacity: 0.9;
}

/* ─── Pricing label row (3rd row) ─── */

.aXT8UKPmhkikH8MSVUmt {
  width: 260px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: left;
  background-color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.iDJPYQnz78tAVzxajo2X {
  width: 14px;
  height: 14px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.LW38O6MRjBlK8ycIcHoc {
  background-color: var(--color-bg-primary);
}

/* ─── Category Groups & Spacing ─── */

.OUEb5j8AECmzTRMyhXnW {
}

.DSArzVHHddYqHFzjCfzw {
  pointer-events: none;
}

.Lua4QTtSApcyQHuhWxos {
  height: 12px;
  padding: 0;
  border: none;
  background: transparent;
}

/* ─── Category Header ─── */

.D78KsxoB3KrRg7pD4y7A {
  cursor: pointer;
  user-select: none;
}

.D78KsxoB3KrRg7pD4y7A:hover .osvb4UZ8mN10dxcnP1ZR {
  background-color: var(--color-bg-card-hover);
}

.D78KsxoB3KrRg7pD4y7A:focus-visible .osvb4UZ8mN10dxcnP1ZR {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: -2px;
}

.osvb4UZ8mN10dxcnP1ZR {
  padding: 18px 24px;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  transition: background-color 0.15s ease;
}

/* ─── Category Icon ─── */

.XLA3ng6sBWiXbGhuo9gP {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--color-accent-blue);
  opacity: 0.85;
}

.XLA3ng6sBWiXbGhuo9gP svg {
  width: 100%;
  height: 100%;
}

/* ─── Category Title ─── */

.NaDRiIXXPcLVFeP73Yh_ {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  vertical-align: middle;
}

.PxW6wMdCvZ_mlE1Qsj9H {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── Feature Rows ─── */

.PQlJbKT513Gbm1OGxGxA {
}

.PQlJbKT513Gbm1OGxGxA:last-child .n1F7XoS4uYONz5K0gOwU,
.PQlJbKT513Gbm1OGxGxA:last-child .jLVheqfC4SnfFY3kMXgf {
  border-bottom: none;
}

.PQlJbKT513Gbm1OGxGxA:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.n1F7XoS4uYONz5K0gOwU {
  padding: 16px 24px 16px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.ZGyOXtuoG6yRCZz2DJGk {
  display: inline-flex;
  align-items: center;
}

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

/* ─── Tooltip ─── */

.Z7uxbUOdY6P8Z2IReq47 {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
}

.ZTGanu6mUriW1ZFIHv3B {
  width: 14px;
  height: 14px;
  color: var(--color-text-dim);
  cursor: help;
  flex-shrink: 0;
}

.SJ4_pUp5JnAtQSSOGYNZ {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 240px;
  padding: 10px 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f5f5;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: normal;
}

.SJ4_pUp5JnAtQSSOGYNZ::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.Z7uxbUOdY6P8Z2IReq47:hover .SJ4_pUp5JnAtQSSOGYNZ {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ─── Value Cells ─── */

.jLVheqfC4SnfFY3kMXgf {
  padding: 16px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hvFNFwoLYmaD6elEME7v {
  background: linear-gradient(108.17deg, rgba(23, 23, 23, 0.5) 21.44%, rgba(10, 10, 10, 0.5) 78.43%);
}

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

/* ─── Icons ─── */

.DpduxCIwKvuRaBY_1eMs {
  width: 20px;
  height: 20px;
  color: var(--color-accent-green);
  display: inline-block;
  vertical-align: middle;
}

.Npo9j1XMnPk4E8AMRlIA {
  width: 20px;
  height: 20px;
  color: var(--color-text-dim);
  display: inline-block;
  vertical-align: middle;
}

/* ========================================
   MOBILE LAYOUT
   ======================================== */

/* ─── Mobile Sticky Plan Header ─── */

.WORIMS3bgBPXYyssbQUt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: sticky;
  top: 60px;
  z-index: 10;
  background-color: var(--color-bg-primary);
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--color-border);
}

.LtZ_KhCV8t8SiV2ab11g {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
}

.DXgV6L2V0rfywwn3jBsl {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.1) 0%, rgba(2, 132, 199, 0.02) 100%);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-md);
}

.ihI9hKVyE_WAQT9LvAQO {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

.kqIxKZiVLlwEmwCKY7FY {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
}

.dRsKWm7EcP0A8mNdUK2p {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-dim);
}

.IhVDBvwjYl4Dp7OHqZZ2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ─── Mobile Pricing Label ─── */

.NYI3yRP1W0pMumIhqpZh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

/* ─── Mobile Category Group ─── */

.D2DdfPlFYG9NK06XvG3v {
  margin-top: 16px;
}

.NI6SOUjgoI82TeicaNYa {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  background-color: var(--color-bg-card);
  border: none;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  user-select: none;
  text-align: left;
  transition: background-color 0.15s ease;
}

.NI6SOUjgoI82TeicaNYa:hover {
  background-color: var(--color-bg-card-hover);
}

/* ─── Mobile Feature Block ─── */

.s0fBu5j2j7Y2QkPUKtaa {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tNI1QywFzIZYFYSwMWjr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
}

.bVt50xL2sp5b54U4pg0J {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 6px 0 14px;
}

.ZcbC2XVotXE7VyWIqfrf {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
}

.Ix17eDAqxRUtdJupigEQ {
  background: rgba(2, 132, 199, 0.04);
  border-radius: 4px;
}

/* ─── Responsive: Tablet ─── */

@media (max-width: 1024px) {
  .r9aUdPzdCH8fpixR9kkN {
    font-size: 32px;
    line-height: 38px;
  }

  ._99PL9eK5siWxXqIaxYW {
    width: 200px;
  }

  .aXT8UKPmhkikH8MSVUmt {
    width: 200px;
  }

  .n1F7XoS4uYONz5K0gOwU {
    padding-left: 48px;
  }

  .eDyxXyXajiTOPEIzs7Ht {
    font-size: 12px;
    padding: 7px 14px;
    min-width: 100px;
  }

  .UicgpXmx66MBFTePV8oU {
    font-size: 14px;
  }

  .WbuXdPUMmv5moQHleiAK {
    font-size: 13px;
  }
}

/* ─── Responsive: Mobile ─── */

@media (max-width: 768px) {
  .vWRrxSYnUYNOgAMTArSm {
    padding: var(--space-3xl) 0;
  }

  .FOAg0mqD3r8vWU3ySCIh {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
  }

  .r9aUdPzdCH8fpixR9kkN {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }

  .ulbeDJXxOQDn_VCXI7zu {
    font-size: 12px;
    padding: 5px 14px;
  }

  /* Toggle layout: show mobile, hide desktop */
  .MJjPUOSvaa0QOTwV0k7x {
    display: none;
  }

  .YigdAmMattS1pmkm0OsS {
    display: block;
  }

  /* Tooltip adjustments */
  .SJ4_pUp5JnAtQSSOGYNZ {
    left: 0;
    transform: translateX(0) translateY(4px);
    width: 180px;
  }

  .SJ4_pUp5JnAtQSSOGYNZ::after {
    left: 16px;
    transform: none;
  }

  .Z7uxbUOdY6P8Z2IReq47:hover .SJ4_pUp5JnAtQSSOGYNZ {
    transform: translateX(0) translateY(0);
  }
}

/* ─── Very Small Screens ─── */

@media (max-width: 400px) {
  .ihI9hKVyE_WAQT9LvAQO {
    font-size: 12px;
  }

  .kqIxKZiVLlwEmwCKY7FY {
    font-size: 10px;
  }

  .IhVDBvwjYl4Dp7OHqZZ2 {
    font-size: 10px;
    padding: 5px 8px;
  }

  .tNI1QywFzIZYFYSwMWjr {
    font-size: 12px;
  }

  .ZcbC2XVotXE7VyWIqfrf {
    font-size: 11px;
  }
}

