:root {
  --ink: #292929;
  --muted: #5d5d5d;
  --purple: #280137;
  --purple-dark: #280137;
  --lavender: #f6f1f8;
  --cream: #fafafa;
  --line: #ececec;
  --green: #16a34a;
  --shadow: 0 18px 50px rgba(40, 1, 55, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", sans-serif;
  letter-spacing: -0.15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: white; padding: 10px 14px; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 69px;
  padding: 15px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 19px; font-weight: 600; line-height: 1; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 30px); }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 400; text-decoration: none; }
.nav-links .button { color: white; font-weight: 500; }
.site-nav .button {
  min-height: 0;
  padding: 9px 18px;
  background: linear-gradient(115deg, var(--purple-dark), #000);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--ink); }
.site-nav .button:hover { color: white; background: #000; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--purple-dark);
  border-radius: 10px;
  background: var(--purple-dark);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary { background: white; color: var(--purple-dark); border-color: var(--line); }
.button:disabled { opacity: 0.55; cursor: not-allowed; }
.hero {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 100px);
  background:
    radial-gradient(circle at 80% 10%, rgba(141, 72, 181, 0.18), transparent 34%),
    linear-gradient(145deg, #fff 0%, var(--cream) 58%, var(--lavender) 100%);
}
.hero.page-hero { padding-block: 28px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(32px, 3.6vw, 44px); }
.page-hero .lede { max-width: 780px; margin-top: 10px; font-size: 16px; line-height: 1.5; }
.page-hero + .section { padding-top: clamp(32px, 4vw, 56px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(38px, 7vw, 100px); max-width: 1200px; margin: auto; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--purple); font-size: 12px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); font-weight: 500; line-height: 1.08; letter-spacing: -0.15px; }
h1 { max-width: 820px; margin: 0; font-size: clamp(38px, 5.4vw, 60px); }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 46px); }
h3 { margin: 0 0 10px; font-size: 21px; }
.lede { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.proof-list { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.proof-list li::before { content: "✓"; color: var(--green); font-weight: 600; margin-right: 7px; }
.demo-card, .tool-panel {
  border: 1px solid rgba(93, 36, 131, .15);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}
.demo-question { font-weight: 500; font-size: 17px; }
.demo-choice { margin: 8px 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; }
.demo-choice.correct { border-color: #a8d5bc; background: #eff9f3; }
.demo-explanation { margin-top: 16px; padding: 14px; border-left: 3px solid var(--purple); background: var(--lavender); color: #514759; }
.section { padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 84px); }
.section.tint { background: var(--cream); }
.section-inner { max-width: 1120px; margin: auto; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  text-decoration: none;
}
.card:hover { border-color: #cbb9d4; box-shadow: 0 12px 30px rgba(40, 1, 55, .07); transform: translateY(-2px); }
.card p { margin: 8px 0 0; color: var(--muted); }
.card .label { color: var(--purple); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.hub-content > h2 { max-width: 860px; margin-top: 48px; font-size: clamp(28px, 3.2vw, 38px); }
.hub-content > p, .hub-content > ul, .hub-content > ol { max-width: 900px; }
.hub-content > .table-scroll { margin: 22px 0 32px; }
.hub-content .table-scroll table { min-width: 680px; }
.hub-content .table-scroll th, .hub-content .table-scroll td { padding: 11px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.hub-content > .section-head { margin-top: 64px; }
.hub-content > .faq-section { max-width: 900px; }
.platform-directory {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(64px, 8vw, 96px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(150, 86, 196, .28), transparent 34%),
    linear-gradient(120deg, var(--purple-dark), #08060a 78%);
  box-shadow: 0 26px 70px rgba(40, 1, 55, .17);
  color: white;
}
.platform-directory::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 36%);
  pointer-events: none;
}
.platform-directory > * { position: relative; }
.platform-directory .eyebrow { color: rgba(255, 255, 255, .55); }
.platform-directory h2 { margin-bottom: 0; color: white; }
.platform-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.platform-directory-head > p { margin: 0; color: rgba(255, 255, 255, .68); font-size: 14px; }
.platform-logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.platform-card {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  color: white;
  text-decoration: none;
}
a.platform-card:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .11); transform: translateY(-1px); }
.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(145deg, #fff, #e9ddef);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}
.platform-card-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.platform-card-copy strong { overflow: hidden; font-size: 13px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.platform-card-copy > span { margin-top: 3px; color: rgba(255, 255, 255, .5); font-size: 11px; }
.platform-card-arrow { margin-left: auto; color: rgba(255, 255, 255, .62); }
.platform-guide-head { margin-bottom: 28px; }
.answer-box { margin: 22px 0 30px; padding: 20px 22px; border: 1px solid #d9c8e3; border-radius: 12px; background: var(--lavender); font-size: 17px; }
.breadcrumbs { max-width: 900px; margin: 0 auto 28px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: inherit; }
.article-header, .article-body { max-width: 820px; margin: auto; }
.article-header { padding: 28px 20px 16px; }
.article-header .breadcrumbs { margin-bottom: 12px; }
.article-header .eyebrow { margin-bottom: 10px; }
.article-header h1 { font-size: clamp(32px, 3.8vw, 44px); }
.article-header .lede { margin-top: 10px; font-size: 16px; line-height: 1.5; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 20px; color: var(--muted); font-size: 13px; }
.product-preview { margin: 28px 0 42px; overflow: hidden; border: 1px solid #d9c8e3; border-radius: 16px; background: white; box-shadow: 0 18px 48px rgba(40, 1, 55, .08); }
.product-preview-browser { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--wash); color: var(--muted); font-size: 12px; }
.product-preview-browser > span { width: 8px; height: 8px; border-radius: 50%; background: #d8cbdc; }
.product-preview-browser strong { margin-left: 6px; font-weight: 500; }
.product-preview-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-preview-grid section { padding: 24px; }
.product-preview-grid section + section { border-left: 1px solid var(--line); }
.product-preview-grid h2 { margin: 8px 0 14px; font-size: 20px; }
.product-preview-result { background: var(--lavender); }
.product-preview-result > span { display: inline-block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.product-preview figcaption { padding: 12px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.article-body { padding: 20px 20px 90px; }
.article-body h2 { margin-top: 48px; font-size: 30px; }
.article-body h3 { margin-top: 30px; }
.article-body li { margin: 7px 0; }
.related-resources { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.related-resources h2 { margin: 8px 0 18px; font-size: 25px; }
.related-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.related-resource-grid a { display: flex; min-height: 132px; flex-direction: column; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--wash); }
.related-resource-grid a:hover { border-color: #cbb9d4; transform: translateY(-2px); }
.related-resource-grid span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.table-scroll { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
.table-scroll:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
.table-scroll table { width: 100%; border-collapse: collapse; }
.article-body .table-scroll { margin: 22px 0 32px; }
.article-body table { min-width: 600px; }
.article-body th, .article-body td { padding: 11px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.sources { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); }
.cta-box { margin-top: 44px; padding: 28px; border-radius: 16px; background: var(--purple-dark); color: white; }
.article-body .cta-box h2 { color: white; }
.article-body .cta-box p { color: rgba(255, 255, 255, .78); }
.cta-box a { color: white; }
.faq-section { margin-top: 52px; padding-top: 4px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: var(--cream); }
.faq-list summary { padding: 16px 18px; color: var(--ink); font-weight: 500; cursor: pointer; }
.faq-list summary::marker { color: var(--purple); }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); }
.faq-list p { margin: 0; padding: 15px 18px 18px; color: var(--muted); }
.tool-wrap { max-width: 920px; margin: auto; padding: 28px 20px 92px; }
.tool-wrap > h1 { font-size: clamp(32px, 3.8vw, 44px); }
.tool-wrap > .lede { margin-top: 10px; font-size: 16px; line-height: 1.5; }
.tool-quick-facts { margin: 0 0 26px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--wash); }
.tool-quick-facts h2 { margin: 0 0 14px; font-size: 21px; }
.tool-quick-facts > div { display: grid; gap: 8px; }
.tool-quick-facts p { margin: 0; }
.tool-working-example { margin-top: 16px !important; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); }
.tool-panel label { display: block; margin: 18px 0 7px; font-weight: 500; }
.tool-panel textarea, .tool-panel input {
  width: 100%;
  border: 1px solid #cec5d1;
  border-radius: 10px;
  padding: 13px;
  font: inherit;
  background: white;
}
.tool-panel textarea { min-height: 150px; resize: vertical; }
.options-list { display: grid; gap: 8px; }
.tool-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 20px; }
.tool-status { color: var(--muted); font-size: 14px; }
.tool-result { margin-top: 24px; padding: 22px; border: 1px solid #bcdcc8; border-radius: 12px; background: #f3faf6; }
.tool-result[hidden], .otp-panel[hidden] { display: none; }
.tool-result h2 { font-size: 25px; }
.result-steps { padding-left: 20px; }
.otp-panel { margin-top: 20px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); }
.form-row { display: flex; gap: 10px; margin-top: 10px; }
.form-row .button { flex: 0 0 auto; }
.notice { padding: 14px 16px; border-left: 3px solid #d09a31; background: #fff8e9; color: #664b19; }
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 56px) 30px;
  background:
    linear-gradient(115deg, rgba(40, 1, 55, .88), rgba(0, 0, 0, .9)),
    url("/images/ashishhirpara_A_surreal_dramatic_landscape_Cloudy_bright_sky__96051a6e-e096-440a-94a0-4d064bf4f8d7_3.png") center / cover no-repeat;
  color: white;
}
.footer-dots {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .16) 1.4px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%);
  mask-image: radial-gradient(circle, #000 40%, transparent 72%);
  pointer-events: none;
}
.footer-glow {
  position: absolute;
  bottom: -140px;
  left: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 90, 220, .28), transparent 70%);
  pointer-events: none;
}
.footer-shell { position: relative; max-width: 1080px; margin: auto; }
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .footer-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.footer-cta p { max-width: 360px; margin: 8px 0 0; color: rgba(255, 255, 255, .6); font-size: 14px; line-height: 1.55; }
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 10px;
  background: white;
  box-shadow: rgba(255, 255, 255, .35) 0 14px 34px -12px;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 36px;
  padding: clamp(36px, 5vw, 52px) 0 clamp(30px, 4vw, 44px);
}
.footer-brand .brand { color: white; font-size: 18px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: white;
  box-shadow: rgba(255, 255, 255, .15) 0 0 0 1px, rgba(160, 90, 220, .7) 0 10px 26px -10px;
}
.footer-logo img { width: 24px; height: 24px; }
.footer-brand p { max-width: 280px; margin: 16px 0 0; color: rgba(255, 255, 255, .55); font-size: 13px; line-height: 1.6; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer h2 {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 11px; font-size: 14px; line-height: 1.4; }
.site-footer li a { text-decoration: none; }
.site-footer li a:hover { color: white; }
.fine-print {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
}
.footer-status { display: inline-flex; align-items: center; gap: 7px; }
.footer-status > span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@media (max-width: 820px) {
  .related-resource-grid { grid-template-columns: 1fr; }
  .site-nav { gap: 8px; }
  .nav-links a:not(.button) { display: none; }
  .hero-grid, .grid, .grid.two, .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero.page-hero { padding-block: 24px; }
  .page-hero h1 { font-size: clamp(30px, 8.5vw, 36px); }
  .page-hero .lede { font-size: 15px; line-height: 1.5; }
  .form-row { flex-direction: column; }
  .footer-inner { gap: 28px; }
  .platform-directory-head { grid-template-columns: 1fr; gap: 12px; }
  .platform-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-preview-grid { grid-template-columns: 1fr; }
  .product-preview-grid section + section { border-top: 1px solid var(--line); border-left: 0; }
}
@media (max-width: 480px) {
  .platform-directory { padding: 22px 16px; border-radius: 16px; }
  .platform-logo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 350px) {
  .site-nav .brand { font-size: 18px; }
  .site-nav .brand img { width: 34px; height: 34px; }
  .site-nav .button { padding-inline: 12px; font-size: 13px; }
}
