:root{
  --page-bg:#f4f7fb;
  --page-ink:#0f172a;
  --page-muted:#64748b;
  --page-panel:#ffffff;
  --page-panel-soft:#eef4fb;
  --page-border:#d8e2f0;
  --page-accent:#3157e8;
  --page-accent-soft:#e8efff;
  --page-accent-deep:#173a8a;
  --page-teal:#0f9f9a;
  --page-shadow:0 18px 45px rgba(15, 23, 42, 0.08);
  --page-shadow-strong:0 30px 80px rgba(15, 23, 42, 0.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--page-ink);
  font-family:"Aptos","Segoe UI Variable","Segoe UI",system-ui,sans-serif;
  background:
    linear-gradient(135deg, rgba(49,87,232,0.08), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, var(--page-bg) 100%);
}
a{color:var(--page-accent)}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(49,87,232,0.22);
  outline-offset:3px;
}
.page{
  width:min(1320px, calc(100% - 28px));
  margin:0 auto;
  padding:28px 0 64px;
}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:22px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.7);
  border-radius:24px;
  background:rgba(255,255,255,0.68);
  backdrop-filter:blur(14px);
  box-shadow:0 14px 30px rgba(14, 31, 58, 0.08);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--page-ink);
}
.brand img{
  width:44px;
  height:44px;
  display:block;
  padding:6px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(220,233,255,0.95));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 20px rgba(12,102,228,0.12);
}
.brandText{
  display:grid;
  gap:2px;
}
.brandText strong{
  font-size:16px;
  letter-spacing:-0.01em;
}
.brandText span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--page-accent);
  font-weight:700;
}
.topActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.buttonLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--page-border);
  background:rgba(255,255,255,0.9);
  color:var(--page-ink);
  text-decoration:none;
  font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.buttonLink.primary{
  background:linear-gradient(135deg, #3157e8, #173a8a);
  border-color:#2546c7;
  color:#fff;
  box-shadow:0 16px 30px rgba(12,102,228,0.24);
}
.buttonLink:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(14, 31, 58, 0.10);
  border-color:#bfd0ea;
}
.buttonLink.primary:hover{
  box-shadow:0 18px 34px rgba(12,102,228,0.28);
}
.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(340px, 0.85fr);
  gap:20px;
  margin-bottom:20px;
}
.heroCard,.panelCard,.resourceCard,.faqCard{
  background:var(--page-panel);
  border:1px solid var(--page-border);
  border-radius:28px;
  box-shadow:var(--page-shadow);
}
.heroCard{
  position:relative;
  overflow:hidden;
  padding:34px 34px 28px;
  background:
    linear-gradient(135deg, rgba(49,87,232,0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow:var(--page-shadow-strong);
}
.landingPage .heroCard::after{
  content:"";
  position:absolute;
  inset:auto -6% -26% 56%;
  height:240px;
  background:
    linear-gradient(145deg, rgba(12,102,228,0.16), rgba(10,54,120,0.04)),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.55) 0 14px, transparent 14px 30px);
  border-radius:36px;
  transform:rotate(-10deg);
  pointer-events:none;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--page-accent-deep);
  font-weight:700;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(12,102,228,0.14);
}
h1{
  margin:0 0 14px;
  font-size:clamp(38px, 5.4vw, 62px);
  line-height:0.98;
  letter-spacing:-0.045em;
  max-width:11ch;
}
.heroCard p{
  margin:0;
  max-width:62ch;
  line-height:1.72;
  color:var(--page-muted);
  font-size:16px;
}
.heroCallouts{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}
.heroCallout{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.82);
  background:rgba(255,255,255,0.80);
  backdrop-filter:blur(6px);
  box-shadow:0 10px 24px rgba(14, 31, 58, 0.08);
}
.heroCallout strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}
.heroCallout span{
  color:var(--page-muted);
  line-height:1.55;
}
.heroStats{
  display:grid;
  gap:12px;
  padding:0;
}
.stat{
  padding:18px 18px 16px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,244,255,0.92));
  border:1px solid rgba(216,226,240,0.95);
  box-shadow:0 16px 34px rgba(14, 31, 58, 0.08);
}
.stat strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
  letter-spacing:-0.01em;
}
.stat span{
  color:var(--page-muted);
  line-height:1.55;
}
.gridTwo{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin-bottom:20px;
}
.gridThree{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  margin-bottom:20px;
}
.panelCard{
  padding:24px 24px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,255,0.94));
}
.panelCard h2,
.resourceCard h2,
.faqCard h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-0.03em;
}
.panelCard p,
.panelCard li,
.resourceCard p,
.faqCard p{
  color:var(--page-muted);
  line-height:1.68;
}
.panelCard ul{
  margin:0;
  padding-left:20px;
}
.featureList{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.featureList div{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:12px;
  align-items:start;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(215,226,243,0.95);
  background:linear-gradient(180deg, rgba(239,245,255,0.92), rgba(255,255,255,0.96));
}
.featureList strong{
  font-size:14px;
  color:var(--page-ink);
}
.featureList span{
  color:var(--page-muted);
  line-height:1.55;
}
.steps{
  display:grid;
  gap:12px;
  margin:0;
}
.step{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:12px;
  align-items:start;
  padding:16px 18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(239,245,255,0.92), rgba(255,255,255,0.96));
  border:1px solid rgba(215,226,243,0.95);
}
.step span{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--page-accent-soft), #f8fbff);
  color:var(--page-accent-deep);
  font-weight:700;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.9);
}
.step div{
  line-height:1.6;
  color:var(--page-ink);
}
.resourceList{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.resourceCard{
  display:block;
  position:relative;
  overflow:hidden;
  padding:20px 20px 18px;
  text-decoration:none;
  color:var(--page-ink);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  background:
    linear-gradient(135deg, rgba(15,159,154,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,247,255,0.96));
}
.resourceCard:hover{
  transform:translateY(-3px);
  border-color:#b9cdee;
  box-shadow:0 18px 34px rgba(14, 31, 58, 0.12);
}
.resourceCard strong{
  display:block;
  margin-bottom:10px;
  font-size:19px;
  letter-spacing:-0.02em;
}
.resourceCard::after{
  content:"";
  position:absolute;
  right:-24px;
  bottom:-24px;
  width:120px;
  height:120px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(12,102,228,0.12), transparent 68%);
  pointer-events:none;
}
.faqWrap{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.faqCard{
  padding:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,247,255,0.95));
}
.notice{
  padding:20px 22px;
  border-radius:24px;
  border:1px solid #f0cb96;
  background:
    radial-gradient(circle at top right, rgba(255,226,188,0.58), transparent 26%),
    linear-gradient(180deg, #fff7ea, #fffdf8);
  color:#573819;
  line-height:1.7;
  box-shadow:0 16px 30px rgba(88, 55, 20, 0.08);
}

/* Modern shared page polish: keeps existing markup while unifying page rhythm. */
.topbar,
.heroCard,
.panelCard,
.resourceCard,
.faqCard,
.stat,
.notice{
  backdrop-filter:saturate(1.15) blur(8px);
}

.panelCard,
.resourceCard,
.faqCard,
.stat{
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.panelCard:hover,
.faqCard:hover,
.stat:hover{
  transform:translateY(-2px);
  border-color:#c5d4ea;
  box-shadow:0 24px 54px rgba(15,23,42,0.10);
}
.footer{
  margin-top:22px;
  text-align:center;
  color:var(--page-muted);
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.sectionKicker{
  width:max-content;
  max-width:100%;
  margin:0 0 10px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(49,87,232,0.16);
  background:var(--page-accent-soft);
  color:var(--page-accent-deep);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.supportGuide .page{
  width:min(1240px, calc(100% - 32px));
}

.supportGuide .hero{
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .8fr);
  gap:24px;
  margin-bottom:24px;
}

.supportGuide h1{
  max-width:12.5ch;
}

.supportGuide .heroCard{
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(135deg, rgba(49,87,232,0.13), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.supportGuide .heroCard::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-96px;
  width:320px;
  height:320px;
  border-radius:50%;
  border:1px solid rgba(49,87,232,0.14);
  background:
    linear-gradient(135deg, rgba(15,159,154,0.10), transparent 56%),
    repeating-linear-gradient(135deg, rgba(49,87,232,0.08) 0 1px, transparent 1px 18px);
  pointer-events:none;
}

.supportGuide .heroStats{
  align-content:stretch;
}

.supportGuide .stat{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.supportCompare{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin:0 0 20px;
}

.supportVisualCard{
  position:relative;
  overflow:hidden;
  min-height:300px;
  padding:24px;
  border:1px solid var(--page-border);
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(15,159,154,0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow:var(--page-shadow);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.supportVisualCard:hover{
  transform:translateY(-4px);
  border-color:#c1d2ee;
  box-shadow:0 26px 60px rgba(15,23,42,0.12);
}

.supportVisualCardFixed{
  background:
    linear-gradient(135deg, rgba(49,87,232,0.09), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.supportVisualHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.supportVisualHeader span{
  color:var(--page-muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.supportVisualHeader strong{
  color:var(--page-ink);
  font-size:20px;
  letter-spacing:-0.03em;
}

.supportVisualCard p{
  max-width:50ch;
  margin:18px 0 0;
  color:var(--page-muted);
  line-height:1.65;
}

.supportSketch{
  position:relative;
  height:150px;
  border:1px solid rgba(216,226,240,0.95);
  border-radius:22px;
  background:
    linear-gradient(90deg, rgba(216,226,240,0.54) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216,226,240,0.54) 1px, transparent 1px),
    #ffffff;
  background-size:24px 24px;
}

.memberLine{
  position:absolute;
  left:18%;
  right:18%;
  top:52%;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg, #173a8a, #0f9f9a);
  box-shadow:0 10px 24px rgba(49,87,232,0.18);
}

.nodeMark{
  position:absolute;
  left:50%;
  top:52%;
  width:18px;
  height:18px;
  border:4px solid #3157e8;
  border-radius:50%;
  background:#ffffff;
  transform:translate(-50%, -35%);
  box-shadow:0 0 0 8px rgba(49,87,232,0.08);
}

.pinBase{
  position:absolute;
  left:50%;
  top:60%;
  width:58px;
  height:46px;
  transform:translateX(-50%);
  clip-path:polygon(50% 0, 100% 100%, 0 100%);
  border:1px solid #3157e8;
  background:linear-gradient(180deg, #e8efff, #ffffff);
}

.groundLine{
  position:absolute;
  left:calc(50% - 52px);
  top:calc(60% + 48px);
  width:104px;
  height:3px;
  border-radius:999px;
  background:#173a8a;
}

.fixedWall{
  position:absolute;
  right:22%;
  top:22%;
  width:16px;
  height:92px;
  border-radius:999px;
  background:linear-gradient(180deg, #173a8a, #3157e8);
  box-shadow:0 10px 24px rgba(49,87,232,0.18);
}

.fixedHatch{
  position:absolute;
  right:calc(22% - 18px);
  top:22%;
  width:18px;
  height:92px;
  background:repeating-linear-gradient(135deg, rgba(23,58,138,0.70) 0 2px, transparent 2px 9px);
  opacity:.8;
}

.supportSketchFixed .memberLine{
  left:18%;
  right:calc(22% + 8px);
}

.supportMatrixCard{
  margin-bottom:20px;
}

.supportMatrix{
  overflow:hidden;
  border:1px solid var(--page-border);
  border-radius:20px;
  background:#ffffff;
}

.supportMatrixRow{
  display:grid;
  grid-template-columns:1.1fr repeat(2, minmax(0, .95fr));
  min-height:58px;
}

.supportMatrixRow + .supportMatrixRow{
  border-top:1px solid var(--page-border);
}

.supportMatrixRow > div{
  display:flex;
  align-items:center;
  padding:14px 16px;
  color:var(--page-muted);
  line-height:1.45;
}

.supportMatrixRow > div + div{
  border-left:1px solid var(--page-border);
}

.supportMatrixHead{
  min-height:48px;
  background:linear-gradient(180deg, #f8fbff, #eef4ff);
}

.supportMatrixHead > div{
  color:var(--page-accent-deep);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.supportMatrix strong{
  color:var(--page-ink);
}

.supportMatrix span{
  color:var(--page-teal);
  font-weight:800;
}

.supportFaq{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.supportCtaCard{
  background:
    linear-gradient(135deg, rgba(49,87,232,0.12), transparent 40%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.supportCtaCard .buttonLink{
  margin-top:16px;
}

.frameCalcPage .page{
  width:min(1240px, calc(100% - 32px));
}

.frameCalcPage .hero{
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .8fr);
  gap:24px;
  margin-bottom:24px;
}

.frameCalcPage h1{
  max-width:12ch;
}

.frameCalcPage .heroCard{
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(135deg, rgba(49,87,232,0.13), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.frameCalcPage .heroCard::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-110px;
  width:340px;
  height:340px;
  border:1px solid rgba(49,87,232,0.14);
  border-radius:38px;
  background:
    linear-gradient(135deg, rgba(15,159,154,0.10), transparent 56%),
    repeating-linear-gradient(90deg, rgba(49,87,232,0.08) 0 1px, transparent 1px 18px);
  transform:rotate(-8deg);
  pointer-events:none;
}

.calculatorPreview{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(320px, .75fr);
  gap:20px;
  margin:0 0 20px;
}

.calcWorkspaceCard,
.calcCtaCard{
  overflow:hidden;
  border:1px solid var(--page-border);
  border-radius:28px;
  background:#ffffff;
  box-shadow:var(--page-shadow);
}

.calcWorkspaceCard{
  background:linear-gradient(180deg, #ffffff, #f8fbff);
}

.calcChrome{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 18px;
  border-bottom:1px solid var(--page-border);
  background:#f8fbff;
}

.calcChrome span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#d3ddec;
}

.calcChrome span:first-child{background:#ff6b6b}
.calcChrome span:nth-child(2){background:#f9c74f}
.calcChrome span:nth-child(3){background:#43c59e}

.calcChrome strong{
  margin-left:8px;
  color:#50617f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.calcCanvasPreview{
  position:relative;
  height:330px;
  background:#ffffff;
  overflow:hidden;
}

.calcGrid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(216,226,240,0.58) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216,226,240,0.58) 1px, transparent 1px);
  background-size:28px 28px;
}

.calcColumn,
.calcBeam{
  position:absolute;
  border-radius:999px;
  background:#0f172a;
  box-shadow:0 10px 22px rgba(15,23,42,0.12);
}

.calcColumn{
  width:7px;
  height:150px;
  top:86px;
}

.calcColumnLeft{left:28%}
.calcColumnRight{right:24%; height:120px}

.calcBeam{
  left:28%;
  right:24%;
  top:86px;
  height:7px;
}

.calcSupport{
  position:absolute;
  bottom:82px;
}

.calcSupportPinned{
  left:calc(28% - 16px);
  width:38px;
  height:32px;
  clip-path:polygon(50% 0, 100% 100%, 0 100%);
  background:linear-gradient(180deg, #d9fbf6, #ffffff);
  border:1px solid #0f9f9a;
}

.calcSupportFixed{
  right:calc(24% - 11px);
  width:30px;
  height:9px;
  border-radius:999px;
  background:#3157e8;
}

.calcLoad{
  position:absolute;
  display:block;
}

.calcLoadPoint{
  left:47%;
  top:42px;
  width:3px;
  height:44px;
  background:#3157e8;
}

.calcLoadPoint::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-1px;
  width:16px;
  height:16px;
  background:#3157e8;
  clip-path:polygon(50% 100%, 0 0, 100% 0);
  transform:translateX(-50%);
}

.calcLoadDistributed{
  left:34%;
  top:116px;
  width:120px;
  height:36px;
  border-top:2px solid #0f9f9a;
  background:repeating-linear-gradient(90deg, #0f9f9a 0 2px, transparent 2px 24px);
  opacity:.9;
}

.calcCtaCard{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:28px;
  background:
    linear-gradient(135deg, rgba(49,87,232,0.12), transparent 42%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.calcCtaCard h2{
  margin:0 0 12px;
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.04;
  letter-spacing:-0.04em;
}

.calcCtaCard p{
  margin:0;
  color:var(--page-muted);
  line-height:1.65;
}

.calcCtaActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.calcUseCard{
  margin-bottom:20px;
}

.calcResultsCard{
  margin-bottom:20px;
}

.calcResultGrid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:12px;
}

.calcResultGrid div{
  min-height:130px;
  padding:16px;
  border:1px solid var(--page-border);
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff, #f8fbff);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.calcResultGrid div:hover{
  transform:translateY(-3px);
  border-color:#c1d2ee;
  box-shadow:0 18px 38px rgba(15,23,42,0.10);
}

.calcResultGrid strong{
  display:block;
  margin-bottom:8px;
  color:var(--page-ink);
  font-size:16px;
}

.calcResultGrid span{
  color:var(--page-muted);
  line-height:1.55;
}

.landingPage{
  background:#ffffff;
  color:#13213f;
}

.landingPage .lpShell{
  width:min(1360px, calc(100% - 32px));
  margin:0 auto;
}

.landingPage .lpHeader{
  border-bottom:1px solid rgba(216,226,240,0.9);
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(18px);
  box-shadow:0 1px 0 rgba(255,255,255,0.82), 0 12px 34px rgba(15,23,42,0.06);
}

.landingPage .lpHeaderInner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.landingPage .lpBrand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#1b2440;
}

.landingPage .lpBrand img{
  width:58px;
  height:58px;
  padding:8px;
  border-radius:14px;
  background:linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow:0 14px 28px rgba(49, 87, 232, 0.10);
}

.landingPage .lpBrandText{
  display:grid;
  gap:3px;
  align-content:center;
}

.landingPage .lpBrandText strong{
  font-size:17px;
  letter-spacing:-0.02em;
}

.landingPage .lpBrandText span{
  width:max-content;
  padding-bottom:3px;
  border-bottom:1px solid #d4dcef;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#4361ee;
  font-weight:700;
}

.landingPage .lpNav{
  display:flex;
  align-items:center;
  gap:16px;
}

.landingPage .lpNav a{
  display:inline-flex;
  align-items:center;
  color:#41516e;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
}

.landingPage .lpNav a:not(.lpPrimaryBtn){
  min-height:44px;
  padding:0 14px;
  border-radius:10px;
}

.landingPage .lpNav a:not(.lpPrimaryBtn):hover{
  background:#f2f6ff;
  color:#16213f;
}

.landingPage .lpPrimaryBtn,
.landingPage .lpSecondaryBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.landingPage .lpPrimaryBtn{
  background:linear-gradient(135deg, #3157e8, #173a8a);
  color:#fff;
  border:1px solid #3450d6;
  box-shadow:0 16px 34px rgba(49, 87, 232, 0.28);
  letter-spacing:-0.01em;
  text-shadow:none;
}

.landingPage .lpPrimaryBtn,
.landingPage .lpPrimaryBtn:hover,
.landingPage .lpPrimaryBtn:visited,
.landingPage .lpPrimaryBtn:focus,
.landingPage .lpPrimaryBtn:active,
.landingPage .lpNav .lpPrimaryBtn,
.landingPage .lpNav .lpPrimaryBtn:hover,
.landingPage .lpNav .lpPrimaryBtn:visited,
.landingPage .lpNav .lpPrimaryBtn:focus,
.landingPage .lpNav .lpPrimaryBtn:active,
.landingPage .lpNav .lpPrimaryBtn span,
.landingPage .lpPrimaryBtn span{
  color:#fff !important;
}

.landingPage .lpSecondaryBtn{
  border:1px solid #d6dff0;
  color:#2f3d5b;
  background:#fff;
  box-shadow:0 10px 22px rgba(15,23,42,0.05);
}

.landingPage .lpPrimaryBtn span{
  font-size:14px;
  font-weight:800;
  letter-spacing:0.04em;
}

.landingPage .lpPrimaryBtn:hover,
.landingPage .lpSecondaryBtn:hover,
.landingPage .lpResourceCard:hover{
  transform:translateY(-2px);
}

.landingPage .lpSecondaryBtn svg,
.landingPage .lpIconBox svg,
.landingPage .lpIconLine svg{
  width:24px;
  height:24px;
  stroke:#4361ee;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.landingPage .lpHero{
  min-height:calc(100vh - 92px);
  display:flex;
  align-items:center;
  padding:24px 0 136px;
}

.landingPage .lpHeroInner{
  display:grid;
  grid-template-columns:minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap:24px;
  align-items:center;
}

.landingPage .lpHeroCopy{
  max-width:720px;
}

.landingPage .lpHeroVisual{
  position:relative;
  z-index:2;
  margin-left:-24px;
  display:flex;
  justify-content:center;
}

.landingPage .lpHeroVisual::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(12, 22, 40, 0);
  pointer-events:none;
  transition:background-color .28s ease;
}

.landingPage .lpEyebrow{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 16px;
  border-radius:999px;
  background:#eef3ff;
  color:#2444e8;
  font-size:12px;
  font-weight:700;
  margin-bottom:28px;
}

.landingPage .lpHero h1{
  margin:0 0 22px;
  max-width:none;
  color:#111b32;
  font-size:clamp(54px, 6.6vw, 78px);
  line-height:0.98;
  letter-spacing:-0.025em;
  text-wrap:balance;
  white-space:normal;
}

.landingPage .lpHeroAccent{
  color:#0f9f9a;
}

.landingPage .lpHero p{
  margin:0;
  max-width:650px;
  color:#4d607f;
  font-size:18px;
  line-height:1.72;
}

.landingPage .lpHeroActions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.landingPage .lpPreviewFrame{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.landingPage .lpDemoChrome{
  overflow:hidden;
  width:100%;
  transform-origin:center center;
  border:1px solid #d7e1f3;
  border-radius:18px;
  background:#ffffff;
  box-shadow:0 30px 72px rgba(24, 33, 56, 0.22), 0 10px 24px rgba(67, 97, 238, 0.10);
  animation:lpDemoReveal 1.55s cubic-bezier(.2,.82,.22,1) .12s both;
  transition:transform .42s cubic-bezier(.18,.82,.28,1), box-shadow .42s ease, border-color .42s ease;
  will-change:transform;
}

.landingPage .lpHeroVisual:hover .lpDemoChrome,
.landingPage .lpHeroVisual:focus-within .lpDemoChrome{
  position:fixed;
  top:50%;
  left:50%;
  z-index:80;
  width:min(92vw, 1180px);
  animation:lpDemoFocusIn .34s cubic-bezier(.18,.82,.28,1) both;
  clip-path:inset(0 0 0 0 round 18px);
  transform:translate(-50%, -50%);
  border-color:#bfd0ea;
  box-shadow:0 44px 110px rgba(10, 20, 36, 0.34);
}

.landingPage .lpHeroVisual:hover::before,
.landingPage .lpHeroVisual:focus-within::before{
  background:rgba(12, 22, 40, 0.26);
}

.landingPage .lpHeroVisual:hover .lpHeroVideo,
.landingPage .lpHeroVisual:focus-within .lpHeroVideo{
  max-height:none;
}

.landingPage .lpDemoToolbar{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 16px;
  border-bottom:1px solid #e4ebf6;
  background:#f7faff;
}

.landingPage .lpDemoToolbar span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#d3ddec;
}

.landingPage .lpDemoToolbar span:first-child{
  background:#ff6b6b;
}

.landingPage .lpDemoToolbar span:nth-child(2){
  background:#f9c74f;
}

.landingPage .lpDemoToolbar span:nth-child(3){
  background:#43c59e;
}

.landingPage .lpDemoToolbar strong{
  margin-left:8px;
  color:#50617f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.landingPage .lpDemoStage{
  position:relative;
  padding:12px;
  background:
    linear-gradient(180deg, #ffffff, #f2f6ff);
}

.landingPage .lpPreviewFrame img{
  width:100%;
  display:block;
  border-radius:18px;
}

.landingPage .lpHeroVideo{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
  background:#f3f6ff;
  object-fit:contain;
}

.landingPage .lpDemoBadge{
  position:absolute;
  right:24px;
  bottom:24px;
  padding:9px 12px;
  border:1px solid rgba(255,255,255,0.7);
  border-radius:999px;
  background:rgba(17, 33, 63, 0.86);
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:0 10px 22px rgba(17, 33, 63, 0.18);
  transition:transform .28s ease, background-color .28s ease;
}

.landingPage .lpHeroVisual:hover .lpDemoBadge,
.landingPage .lpHeroVisual:focus-within .lpDemoBadge{
  transform:translateY(-3px);
  background:rgba(12, 102, 228, 0.92);
}

@keyframes lpDemoReveal{
  0%{
    opacity:0;
    transform:translateY(180px);
    clip-path:inset(0 0 calc(100% - 42px) 0 round 18px);
    filter:blur(4px);
  }
  12%{
    opacity:1;
    transform:translateY(150px);
    clip-path:inset(0 0 calc(100% - 42px) 0 round 18px);
    filter:blur(0);
  }
  100%{
    opacity:1;
    transform:translateY(0);
    clip-path:inset(0 0 0 0 round 18px);
    filter:blur(0);
  }
}

@keyframes lpDemoFocusIn{
  0%{
    opacity:.96;
    transform:translate(-50%, -50%) scale(.78);
  }
  100%{
    opacity:1;
    transform:translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .landingPage .lpDemoChrome{
    animation:none;
    transition:none;
  }

  .landingPage .lpReveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .landingPage .lpHeroVisual:hover .lpDemoChrome,
  .landingPage .lpHeroVisual:focus-within .lpDemoChrome,
  .landingPage .lpHeroVisual:hover .lpDemoBadge,
  .landingPage .lpHeroVisual:focus-within .lpDemoBadge{
    transform:none;
  }
}

.landingPage .lpSection{
  padding:92px 0;
}

.landingPage .lpSectionTinted{
  background:linear-gradient(180deg, #f8fbff, #f2f6fc);
}

.landingPage .lpSectionHeading{
  margin:0 auto 52px;
  text-align:center;
}

.landingPage .lpSectionHeading h2{
  margin:0 0 14px;
  color:#13213f;
  font-size:clamp(38px, 4vw, 54px);
  line-height:1.02;
  letter-spacing:-0.045em;
}

.landingPage .lpSectionHeading p{
  margin:0;
  color:#52637f;
  font-size:17px;
  line-height:1.6;
}

.landingPage .lpCardGrid{
  display:grid;
  gap:30px;
}

.landingPage .lpCardGridThree{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.landingPage .lpCard{
  position:relative;
  padding:32px 32px 30px;
  border:1px solid #d7e1f3;
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:0 14px 34px rgba(22, 33, 63, 0.07);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.landingPage .lpCard:hover{
  transform:translateY(-5px);
  border-color:#c1d2ee;
  box-shadow:0 24px 56px rgba(22, 33, 63, 0.12);
}

.landingPage .lpReveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .58s ease, transform .58s cubic-bezier(.18,.82,.28,1);
  transition-delay:var(--lp-reveal-delay, 0ms);
  will-change:opacity, transform;
}

.landingPage .lpReveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

.landingPage .lpSectionHeading.lpReveal{
  transform:translateY(18px);
}

.landingPage .lpSectionHeading.lpReveal.is-visible{
  transform:translateY(0);
}

.landingPage .lpCard h3{
  margin:0 0 14px;
  color:#10203e;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-0.03em;
}

.landingPage .lpCard p{
  margin:0;
  color:#4f607e;
  font-size:17px;
  line-height:1.62;
}

.landingPage .lpIconBox{
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  margin-bottom:26px;
  border-radius:12px;
  background:linear-gradient(135deg, #e7efff, #d9fbf6);
}

.landingPage .lpIconLine{
  margin-bottom:26px;
}

.landingPage .lpStepCard{
  background:linear-gradient(180deg, #f8fbff, #eef5ff);
}

.landingPage .lpStepBadge{
  position:absolute;
  top:-18px;
  left:-16px;
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:999px;
  background:linear-gradient(135deg, #3157e8, #0f9f9a);
  color:#fff;
  font-size:22px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(67, 97, 238, 0.22);
}

.landingPage .lpResourceCard{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  padding:24px 24px 22px;
  border:1px solid #d7e1f3;
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff, #fbfdff);
  color:#122240;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(22, 33, 63, 0.05);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.landingPage .lpResourceCard:hover,
.landingPage .lpResourceCard:focus-visible{
  transform:translateY(-8px);
  border-color:#3157e8;
  background:linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow:0 24px 52px rgba(22, 33, 63, 0.14);
  outline:none;
}

.landingPage .lpResourceCard:hover strong,
.landingPage .lpResourceCard:focus-visible strong{
  color:#2444e8;
}

.landingPage .lpResourceCard:hover .lpIconLine svg,
.landingPage .lpResourceCard:focus-visible .lpIconLine svg{
  stroke:#2444e8;
  transform:scale(1.08);
}

.landingPage .lpResourceCard strong{
  font-size:21px;
  line-height:1.22;
  letter-spacing:-0.03em;
}

.landingPage .lpResourceCard span{
  color:#53627f;
  font-size:16px;
  line-height:1.55;
}

.landingPage .lpFaqShell{
  max-width:920px;
}

.landingPage .lpFaqList{
  display:grid;
  gap:26px;
}

.landingPage .lpFaqCard{
  padding:32px 34px;
  border:1px solid #d7e1f3;
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow:0 12px 30px rgba(15,23,42,0.06);
}

.landingPage .lpFaqCard h3{
  margin:0 0 18px;
  color:#142341;
  font-size:21px;
  letter-spacing:-0.03em;
}

.landingPage .lpFaqCard p{
  margin:0;
  color:#53627f;
  font-size:17px;
  line-height:1.65;
}

.landingPage .lpFooter{
  padding:56px 0 48px;
  background:linear-gradient(180deg, #111827, #0b1220);
  color:#d8e2ff;
}

.landingPage .lpFooterTop{
  display:grid;
  grid-template-columns:1.2fr 2fr;
  gap:48px;
  align-items:start;
}

.landingPage .lpFooterBrand{
  max-width:280px;
}

.landingPage .lpFooterLogoWrap{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:16px;
  background:linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

.landingPage .lpFooterLogoWrap img{
  width:42px;
  height:42px;
}

.landingPage .lpFooterBrandText{
  display:grid;
  gap:4px;
  margin-bottom:22px;
}

.landingPage .lpFooterBrandText strong{
  font-size:18px;
  color:#ffffff;
}

.landingPage .lpFooterBrandText span{
  width:max-content;
  padding-bottom:4px;
  border-bottom:1px solid rgba(216,226,255,0.36);
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#aac0ff;
}

.landingPage .lpFooterBrand p{
  margin:0;
  color:#9fb3df;
  font-size:16px;
  line-height:1.5;
}

.landingPage .lpFooterLinks{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.landingPage .lpFooterLinks h4{
  margin:0 0 18px;
  color:#ffffff;
  font-size:16px;
}

.landingPage .lpFooterLinks a{
  display:block;
  margin-bottom:12px;
  color:#9fb3df;
  text-decoration:underline;
  text-decoration-color:transparent;
  text-underline-offset:4px;
  transition:color .18s ease, text-decoration-color .18s ease;
  font-size:16px;
}

.landingPage .lpFooterLinks a:hover,
.landingPage .lpFooterLinks a:focus-visible{
  color:#ffffff;
  text-decoration-color:currentColor;
}

.landingPage .lpFooterRule{
  height:1px;
  margin:44px 0 32px;
  background:rgba(159,179,223,0.14);
}

.landingPage .lpDisclaimer{
  padding:24px 24px;
  border:1px solid rgba(184,104,35,0.65);
  border-radius:14px;
  background:#3a2a2a;
  color:#ffd454;
  font-size:15px;
  line-height:1.6;
}

.landingPage .lpFooterBottom{
  margin-top:34px;
  text-align:center;
  color:#7d8eb8;
  font-size:14px;
}

.landingPage .modalBackdrop{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(15,23,42,0.34);
  z-index:120;
  overflow:auto;
}

.landingPage .modalBackdrop[hidden]{
  display:none;
}

.landingPage .modalCard{
  width:min(420px, 100%);
  max-height:calc(100vh - 40px);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #d7e1f3;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 28px 80px rgba(15, 23, 42, 0.22);
  color:#13213f;
}

.landingPage .modalCardHelp{
  max-width:760px;
}

.landingPage .modalHeader,
.landingPage .modalActions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
}

.landingPage .modalHeader{
  border-bottom:1px solid #d7e1f3;
  background:#f5f8ff;
}

.landingPage .modalBody{
  padding:14px 16px 8px;
  overflow:auto;
}

.landingPage .modalActions{
  justify-content:flex-end;
  border-top:1px solid #d7e1f3;
  background:#f5f8ff;
}

.landingPage .modalActions button{
  min-height:40px;
  padding:0 14px;
  border:1px solid #cbd7ea;
  border-radius:10px;
  background:#ffffff;
  color:#13213f;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}

.landingPage .modalActions button.primary{
  border-color:#3450d6;
  background:#4361ee;
  color:#ffffff;
}

.landingPage .helpHero{
  margin:-2px 0 16px;
  padding:18px 18px 16px;
  border:1px solid #b8c8ff;
  border-radius:18px;
  background:
    radial-gradient(circle at top right, rgba(220,232,255,0.96) 0%, transparent 52%),
    linear-gradient(135deg, #f5f8ff, #ffffff);
}

.landingPage .helpHeroEyebrow{
  margin-bottom:8px;
  color:#5f6f86;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.landingPage .helpHeroTitle{
  margin-bottom:8px;
  color:#13213f;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
}

.landingPage .helpHeroText{
  max-width:58ch;
  color:#5f6f86;
  line-height:1.5;
}

.landingPage .helpGuideGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.landingPage .helpGuideCard{
  padding:16px;
  border:1px solid #d7e1f3;
  border-radius:14px;
  background:#f8fbff;
}

.landingPage .helpGuideCard h4{
  margin:0 0 8px;
  color:#13213f;
}

.landingPage .helpGuideCard p{
  margin:0;
  color:#5f6f86;
  line-height:1.5;
}

.landingPage .contactGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-bottom:14px;
}

.landingPage .contactField{
  display:grid;
  gap:6px;
  margin-bottom:14px;
}

.landingPage .contactField span{
  color:#5f6f86;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.landingPage .contactField input,
.landingPage .contactField select,
.landingPage .contactField textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #d7e1f3;
  border-radius:12px;
  background:#ffffff;
  color:#13213f;
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.7);
}

.landingPage .contactField textarea{
  min-height:140px;
  resize:vertical;
  line-height:1.5;
}

.landingPage .contactField input[readonly]{
  background:#edf4ff;
  color:#5f6f86;
}

.landingPage .contactFieldFull{
  margin-bottom:12px;
}

.landingPage .contactHoneypot{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
  margin:0 !important;
}

.landingPage .contactExtras{
  display:grid;
  gap:8px;
  margin:0 0 14px;
}

.landingPage .contactToggle{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 12px;
  border:1px solid #d7e1f3;
  border-radius:12px;
  background:#edf4ff;
  color:#13213f;
  line-height:1.45;
}

.landingPage .contactToggle input{
  flex:0 0 auto;
  margin-top:2px;
}

.landingPage .contactInfoCard{
  margin-bottom:12px;
  padding:14px 16px;
  border:1px dashed #b8c8ff;
  border-radius:14px;
  background:#f5f8ff;
}

.landingPage .contactInfoTitle{
  margin-bottom:6px;
  color:#5f6f86;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.landingPage .contactInfoText{
  color:#13213f;
  line-height:1.5;
}

.landingPage .contactStatus{
  min-height:20px;
  color:#5f6f86;
  font-size:13px;
  line-height:1.4;
}

.landingPage .contactStatus.isError{
  color:#b91c1c;
}

.landingPage .contactStatus.isSuccess{
  color:#166534;
}

@media (max-width: 900px){
  .hero,
  .gridTwo,
  .gridThree,
  .faqWrap,
  .supportGuide .hero,
  .supportCompare,
  .supportFaq,
  .frameCalcPage .hero,
  .calculatorPreview{
    grid-template-columns:1fr;
  }
  .heroCallouts{
    grid-template-columns:1fr;
  }
  .resourceList{
    grid-template-columns:1fr;
  }
  .supportGuide .heroCard{
    min-height:auto;
  }
  .frameCalcPage .heroCard{
    min-height:auto;
  }
  .calcResultGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .supportMatrix{
    border-radius:16px;
  }
  .supportMatrixRow{
    grid-template-columns:1fr;
  }
  .supportMatrixRow > div + div{
    border-left:none;
    border-top:1px solid var(--page-border);
  }
  .supportMatrixHead{
    display:none;
  }
  .supportMatrixRow > div:first-child{
    background:#f8fbff;
    color:var(--page-accent-deep);
    font-size:12px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
  }
}

@media (max-width: 640px){
  .page{
    width:min(1320px, calc(100% - 18px));
    padding:22px 0 40px;
  }
  .topbar{
    align-items:flex-start;
    flex-direction:column;
    padding:12px 14px;
  }
  .heroCard,
  .panelCard,
  .faqCard,
  .resourceCard,
  .heroStats{
    padding-left:18px;
    padding-right:18px;
  }
  h1{
    max-width:none;
    font-size:36px;
  }
  .supportGuide .page{
    width:min(1240px, calc(100% - 18px));
  }
  .supportVisualCard{
    min-height:auto;
    padding:18px;
    border-radius:22px;
  }
  .calcCtaCard{
    padding:20px;
  }
  .calcCanvasPreview{
    height:250px;
  }
  .calcResultGrid{
    grid-template-columns:1fr;
  }
  .supportVisualHeader{
    flex-direction:column;
    gap:6px;
  }
  .supportSketch{
    height:130px;
  }
  .featureList div{
    grid-template-columns:1fr;
  }
}

@media (max-width: 1080px){
  .landingPage .lpHeroInner,
  .landingPage .lpFooterTop{
    grid-template-columns:1fr;
  }

  .landingPage .lpCardGridThree,
  .landingPage .lpFooterLinks{
    grid-template-columns:1fr;
  }

  .landingPage .lpShell{
    width:min(1360px, calc(100% - 20px));
  }

  .landingPage .lpHero{
    padding:72px 0 84px;
  }

}

@media (max-width: 720px){
  .landingPage .lpHeaderInner{
    min-height:auto;
    padding:18px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .landingPage .lpNav{
    width:100%;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
  }

  .landingPage .lpNav a:not(.lpPrimaryBtn){
    padding:0 10px;
  }

  .landingPage .lpPrimaryBtn{
    min-width:100%;
  }

  .landingPage .lpHero h1,
  .landingPage .lpSectionHeading h2{
    font-size:46px;
  }

  .landingPage .lpHero,
  .landingPage .lpSection{
    min-height:auto;
  }

  .landingPage .modalCardHelp{
    max-width:100%;
  }

  .landingPage .contactGrid,
  .landingPage .helpGuideGrid{
    grid-template-columns:1fr;
  }

  .landingPage .helpHeroTitle{
    font-size:19px;
  }

  .landingPage .lpHero p,
  .landingPage .lpCard p,
  .landingPage .lpFaqCard p{
    font-size:16px;
  }

  .landingPage .lpCard,
  .landingPage .lpFaqCard,
  .landingPage .lpResourceCard{
    padding:24px 22px;
  }

  .landingPage .lpHeroVisual{
    margin-left:0;
  }

  .landingPage .lpHeroVisual:hover .lpDemoChrome,
  .landingPage .lpHeroVisual:focus-within .lpDemoChrome{
    position:static;
    width:100%;
    transform:translateY(-8px) scale(1.03);
  }

  .landingPage .lpHeroVisual:hover::before,
  .landingPage .lpHeroVisual:focus-within::before{
    background:rgba(12, 22, 40, 0);
  }

  .landingPage .lpHeroVisual:hover .lpHeroVideo,
  .landingPage .lpHeroVisual:focus-within .lpHeroVideo{
    max-height:none;
  }
}
