:root {
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --ink: #071a34;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e0d6c8;
  --burgundy: #681016;
  --burgundy-2: #7d1c20;
  --green: #0f6a43;
  --green-soft: #f1f7ef;
  --copper: #b05f33;
  --sand: #f3eadc;
  --footer: #062444;
  --shadow: 0 18px 55px rgba(49, 32, 17, 0.08), 0 2px 10px rgba(49, 32, 17, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff 0, var(--ivory) 34rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.48;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  height: 67px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
}

.brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

.topbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
}

.topbar nav a {
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  text-decoration: none;
}

.topbar nav span {
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
  background: #eee5d4;
  font-size: 0.75rem;
  font-weight: 800;
}

.top-cta {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--burgundy);
  color: #fff;
  padding: 0.55rem 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

main {
  width: min(1370px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 3.2rem;
  align-items: center;
  padding: 1.65rem 0 0.85rem;
  overflow: hidden;
}

.wave-canvas {
  position: absolute;
  inset: -5% -6%;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transform-origin: center;
  animation: waveCanvasDrift 26s ease-in-out infinite alternate;
}


.ambient-fade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 28%, rgba(15, 106, 67, 0.08), transparent 22rem),
    linear-gradient(90deg, var(--ivory) 0%, rgba(251, 248, 241, 0.8) 31%, rgba(251, 248, 241, 0.32) 68%, rgba(251, 248, 241, 0.76) 100%);
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.34;
  animation: driftGlow 12s ease-in-out infinite alternate;
}

.hero:before {
  width: 360px;
  height: 180px;
  right: 8%;
  top: 12%;
  background: rgba(104, 16, 22, 0.22);
}

.hero:after {
  width: 300px;
  height: 160px;
  right: 30%;
  bottom: 8%;
  background: rgba(15, 106, 67, 0.2);
  animation-delay: -4s;
}

@keyframes driftGlow {
  from {
    transform: translate3d(-18px, -8px, 0) scale(0.96);
  }
  to {
    transform: translate3d(22px, 12px, 0) scale(1.05);
  }
}

@keyframes waveCanvasDrift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1.02);
  }

  to {
    transform: translate3d(1.4%, 0.9%, 0) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-canvas {
    animation: none;
  }
}

@keyframes waveDash {
  to {
    stroke-dashoffset: -90;
  }
}

@keyframes waveFloat {
  0%,
  100% {
    transform: translate3d(-22px, -168px, 0) scaleX(1.08) scaleY(1.18);
  }

  50% {
    transform: translate3d(22px, -150px, 0) scaleX(1.13) scaleY(1.08);
  }
}

@keyframes waveFieldDrift {
  from {
    transform: rotateX(58deg) rotateZ(-2deg) translate3d(-18px, -268px, 0) scaleX(1.24) scaleY(1.34);
  }

  to {
    transform: rotateX(58deg) rotateZ(1.4deg) translate3d(22px, -292px, 0) scaleX(1.3) scaleY(1.28);
  }
}

@keyframes waveDotPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

.hero-copy,
.calculator {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--burgundy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  max-width: 590px;
  margin-bottom: 1.05rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
}

h1 em {
  color: var(--burgundy);
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 620px;
  color: #4b5563;
  font-size: 1.13rem;
  line-height: 1.55;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
  margin-top: 2.2rem;
  max-width: 720px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 0.6rem;
  align-items: center;
}

.trust-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 1.45rem;
}

.trust-row strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.trust-row p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.calculator,
.ranking-card,
.cta-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.calculator {
  padding: 1.45rem;
}

.steps {
  display: grid;
  grid-template-columns: 28px auto 1fr 28px auto 1fr 28px auto;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.steps span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #d3cabd;
  border-radius: 999px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
}

.steps span.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
}

.steps strong {
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 500;
}

.steps i {
  display: block;
  height: 1px;
  background: var(--line);
}

.calc-body {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.35rem;
  padding-top: 1.35rem;
}

.calc-form {
  display: grid;
  gap: 0.9rem;
  padding-right: 1.35rem;
  border-right: 1px solid var(--line);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

select,
input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8cec0;
  border-radius: 4px;
  background: #fffdf8;
  color: var(--text);
  padding: 0.58rem 0.7rem;
}

.input-with-unit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid #d8cec0;
  border-radius: 4px;
  background: #fffdf8;
}

.input-with-unit input {
  border: 0;
  background: transparent;
}

.input-with-unit span {
  padding-right: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.calc-form button {
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--burgundy-2), var(--burgundy));
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.calc-form button span {
  margin-left: 0.75rem;
}

.small-link {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.small-link a {
  color: var(--burgundy);
  font-weight: 800;
  text-decoration: none;
}

.impact-card {
  align-self: center;
  border: 1px solid #b8c9b7;
  border-radius: 5px;
  background: linear-gradient(180deg, #f8fbf5, #eef5eb);
}

.impact-card > p {
  margin: 0;
  padding: 0.85rem 1rem 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.impact-grid div {
  min-height: 96px;
  padding: 0.9rem 1.05rem;
  border-top: 1px solid #d3decf;
}

.impact-grid div:nth-child(odd) {
  border-right: 1px solid #d3decf;
}

.impact-grid strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.impact-grid span {
  display: block;
  margin-top: 0.45rem;
  color: #374151;
  font-size: 0.82rem;
}

.bars {
  letter-spacing: 0.08em;
}

.ranking-card {
  margin: 0.25rem 0 0.7rem;
  padding: 1rem 1.35rem 0.7rem;
}

.ranking-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.6rem;
}

.ranking-head .eyebrow {
  margin-bottom: 0.22rem;
}

.ranking-head small {
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  background: #eee5d4;
  color: #5f5141;
  letter-spacing: 0;
  text-transform: none;
}

.ranking-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.ranking-head a,
.table-note a {
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fffdf8;
}

th,
td {
  padding: 0.72rem 0.72rem;
  border: 1px solid #eadfce;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

td {
  color: #374151;
  font-size: 0.86rem;
}

td strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1;
}

.rank {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ebe4d9;
  color: var(--ink);
  font-weight: 900;
}

.rank.first {
  background: var(--green);
  color: #fff;
}

.tool-cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tool-logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.sponsored {
  display: inline-block;
  margin-top: 0.22rem;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  background: #eee5d4;
  color: #6b5b48;
  font-size: 0.72rem;
}

.dots {
  color: var(--green);
  letter-spacing: 0.18em;
}

.details-btn {
  display: inline-flex;
  min-width: 145px;
  justify-content: center;
  border: 1px solid var(--burgundy);
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.affiliate {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.table-note {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.table-note span:last-child {
  text-align: right;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  margin-bottom: 0.8rem;
}

.cta-row article {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--line);
}

.cta-row article:last-child {
  border-right: 0;
}

.quote-highlight {
  background: #fff4ef;
}

.cta-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #d49b84;
  border-radius: 6px;
  color: var(--burgundy);
  font-size: 1.5rem;
}

.cta-row h2 {
  margin: 0 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.cta-row p {
  margin: 0;
  color: #374151;
  font-size: 0.86rem;
}

.cta-row article > a,
.cta-row button {
  display: inline-flex;
  justify-content: center;
  border: 1px solid var(--burgundy);
  border-radius: 4px;
  padding: 0.5rem 0.85rem;
  background: var(--burgundy);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.cta-row article:nth-child(2) > a {
  background: transparent;
  color: var(--burgundy);
}

.cta-row article > span {
  grid-column: 3;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.quote-highlight form {
  display: grid;
  gap: 0.4rem;
}

.quote-highlight input {
  min-height: 34px;
  font-size: 0.84rem;
}

#form-status {
  min-height: 1rem;
  margin: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 7vw;
  background: var(--footer);
  color: #fff;
}

footer div {
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 1.4rem;
}

footer div:first-child {
  border-left: 0;
}

footer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

footer p {
  margin: 0;
  color: #d5e2ee;
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    height: auto;
    padding: 1rem 1.25rem;
  }

  .topbar nav,
  .top-cta {
    justify-self: start;
  }

  .hero,
  .calc-body,
  .cta-row,
  footer {
    grid-template-columns: 1fr;
  }

  .calc-form,
  .cta-row article,
  footer div {
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  main {
    width: min(100% - 28px, 1370px);
  }

  .topbar nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .trust-row,
  .impact-grid,
  .table-note {
    grid-template-columns: 1fr;
  }

  .impact-grid div:nth-child(odd) {
    border-right: 0;
  }

  .cta-row article {
    grid-template-columns: 1fr;
  }

  .cta-row article > span {
    grid-column: auto;
    text-align: left;
  }
}

/* Implivio bright orange theme */
:root {
  --ivory: #fff7ed;
  --paper: #fffdf8;
  --ink: #17211f;
  --text: #27312d;
  --muted: #6c766f;
  --line: #ead9c6;
  --burgundy: #f05a28;
  --burgundy-2: #ff7a1a;
  --green: #167a63;
  --green-soft: #eef8f3;
  --copper: #ff7a1a;
  --sand: #fff0dc;
  --footer: #17211f;
  --shadow: 0 24px 70px rgba(67, 39, 13, 0.1), 0 2px 12px rgba(67, 39, 13, 0.06);
}

body {
  background:
    radial-gradient(circle at 9% 4%, rgba(255, 122, 26, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 12%, rgba(63, 140, 204, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #fff7ed 48%, #fffaf4 100%);
}

.topbar {
  height: 72px;
  border-bottom-color: rgba(234, 217, 198, 0.78);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand::before {
  content: "";
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 0 43%, #fffdf8 44% 56%, transparent 57%),
    linear-gradient(135deg, #ff7a1a, #f0441f 62%, #167a63);
  box-shadow: 0 10px 24px rgba(240, 90, 40, 0.24);
}

.topbar nav a {
  color: #34413b;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 750;
}

.topbar nav span {
  border: 1px solid rgba(240, 90, 40, 0.16);
  background: #fff0dc;
  color: #9c3c17;
}

.top-cta,
.calc-form button,
.cta-row article > a,
.cta-row button {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a, #f0441f);
  box-shadow: 0 12px 28px rgba(240, 90, 40, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 850;
}

.top-cta {
  min-width: 238px;
  min-height: 48px;
  padding-inline: 1.45rem;
}

main {
  width: min(1260px, calc(100% - 56px));
}

.hero {
  min-height: 520px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 3.1rem max(28px, calc((100vw - 1260px) / 2)) 2.4rem;
  color: #f7fbf7;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 122, 26, 0.2), transparent 19rem),
    radial-gradient(circle at 88% 60%, rgba(32, 180, 142, 0.18), transparent 26rem),
    linear-gradient(180deg, #06121d 0%, #071622 54%, #0a1b22 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.wave-canvas {
  opacity: 1;
}

.ambient-fade {
  background:
    radial-gradient(circle at 18% 32%, rgba(6, 18, 29, 0.32), transparent 26rem),
    linear-gradient(90deg, rgba(6, 18, 29, 0.72) 0%, rgba(6, 18, 29, 0.44) 30%, rgba(6, 18, 29, 0.02) 70%, rgba(6, 18, 29, 0.32) 100%);
}

.hero:before {
  background: rgba(255, 122, 26, 0.2);
}

.hero:after {
  background: rgba(32, 180, 142, 0.16);
}

.eyebrow {
  color: #e74d1f;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 680px;
  margin-bottom: 1.05rem;
  color: #121b18;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 4.35vw, 5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.052em;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 34px rgba(18, 28, 25, 0.08);
}

.hero h1 {
  color: #fbfff9;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 44px rgba(0, 0, 0, 0.34);
}

h1 span {
  display: block;
}

h1 em {
  display: inline-block;
  position: relative;
  color: #f05223;
  background: none;
  font-style: normal;
  font-weight: 760;
  letter-spacing: -0.058em;
  text-shadow: none;
}

.hero h1 em {
  color: #ff6b2a;
  text-shadow: 0 0 24px rgba(255, 106, 42, 0.3);
}

h1 em::after {
  content: "";
  position: absolute;
  left: -0.02em;
  right: -0.02em;
  bottom: 0.08em;
  height: 0.1em;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.18);
}

h2,
h3,
.cta-row h2,
footer strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 650px;
  color: #4a5852;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero .lead {
  color: rgba(237, 246, 240, 0.84);
}

.trust-row {
  max-width: 760px;
  gap: 0.85rem;
}

.trust-row div {
  grid-template-columns: 34px 1fr;
  border: 1px solid rgba(234, 217, 198, 0.84);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
  padding: 0.85rem;
}

.hero .trust-row div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 253, 248, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #fff0dc;
  color: #f05a28;
  font-size: 1.05rem;
}

.hero .trust-icon {
  background: rgba(255, 122, 26, 0.14);
  color: #ff8a3d;
}

.hero .trust-row strong {
  color: #ffffff;
}

.hero .trust-row p {
  color: rgba(222, 232, 227, 0.76);
}

.calculator,
.ranking-card,
.cta-row {
  border-color: rgba(234, 217, 198, 0.9);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(16px);
}

.calculator {
  padding: 1.2rem;
}

.steps {
  border-bottom-color: rgba(234, 217, 198, 0.86);
}

.steps span {
  border-color: #efd8c0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 850;
}

.steps span.active {
  border-color: #ff7a1a;
  background: #ff7a1a;
}

.calc-body {
  gap: 1rem;
}

.calc-form {
  border-right-color: rgba(234, 217, 198, 0.86);
}

select,
input,
.input-with-unit,
table {
  border-color: #ead9c6;
  border-radius: 12px;
  background: #fffaf4;
}

.calc-form button {
  min-height: 46px;
}

.small-link a,
.ranking-head a,
.table-note a {
  color: #df4a1d;
}

.impact-card {
  border-color: rgba(22, 122, 99, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 122, 26, 0.16), transparent 12rem),
    linear-gradient(180deg, #f7fff9, #eff9f3);
}

.impact-grid strong,
td strong {
  color: #167a63;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ranking-card {
  margin-top: 0.9rem;
  padding: 1.2rem;
}

.ranking-head small,
.sponsored {
  background: #fff0dc;
  color: #9c3c17;
}

th,
td {
  border-color: #efe1cf;
}

th {
  color: #17211f;
}

.rank.first {
  background: #f05a28;
}

.tool-logo {
  border-radius: 10px;
  background: #17211f;
}

.details-btn {
  border-color: #ff7a1a;
  border-radius: 999px;
  color: #df4a1d;
}

.cta-row {
  overflow: hidden;
}

.quote-highlight {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.17), transparent 14rem),
    #fff6eb;
}

.cta-icon {
  border-color: rgba(240, 90, 40, 0.28);
  border-radius: 16px;
  background: #fff0dc;
  color: #f05a28;
}

.cta-row article:nth-child(2) > a {
  border-color: #ff7a1a;
  color: #df4a1d;
}

footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 122, 26, 0.18), transparent 28rem),
    #17211f;
}

footer p {
  color: #d9e0dc;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  main {
    width: min(100% - 28px, 1260px);
  }

  h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.046em;
  }
}

/* Dark startup command-center background */
.hero {
  color: #f7fbf7;
  background:
    linear-gradient(110deg, rgba(255, 122, 26, 0.18), transparent 34%),
    linear-gradient(250deg, rgba(32, 180, 142, 0.16), transparent 42%),
    linear-gradient(180deg, #071018 0%, #081923 52%, #0a1514 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.dream-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transform-origin: 64% 44%;
  animation: dreamSceneDrift 28s ease-in-out infinite alternate;
}

.dream-grid {
  opacity: 0.3;
  transform: perspective(900px) rotateX(58deg) rotateZ(-7deg) translate3d(-44px, -222px, 0) scale(1.2);
  transform-origin: center;
}

.dream-grid path {
  fill: none;
  stroke: rgba(202, 230, 218, 0.22);
  stroke-width: 1;
}

.dream-core,
.dream-panels,
.dream-streams,
.dream-bars,
.dream-nodes {
  transform-box: view-box;
  transform-origin: center;
}

.dream-core {
  opacity: 0.8;
  animation: dreamCoreFloat 18s ease-in-out infinite alternate;
}

.dream-core ellipse,
.dream-core path {
  fill: none;
  stroke: rgba(32, 180, 142, 0.18);
  stroke-width: 1.3;
}

.dream-core path {
  stroke: rgba(255, 122, 26, 0.24);
  stroke-dasharray: 8 18;
  animation: dreamDash 24s linear infinite;
}

.dream-panels {
  opacity: 0.9;
}

.dream-panels path {
  fill: url("#glass-panel");
  stroke: rgba(230, 247, 239, 0.18);
  stroke-width: 1.2;
}

.dream-panels path:last-child {
  fill: none;
  stroke: rgba(255, 250, 243, 0.22);
  stroke-linecap: round;
}

.dream-streams .dream-flow {
  fill: none;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-dasharray: 12 24;
  animation: dreamFlow 22s linear infinite;
}

.dream-flow.green {
  stroke: url("#dream-green");
}

.dream-flow.orange {
  stroke: url("#dream-orange");
  animation-duration: 29s;
  animation-direction: reverse;
}

.dream-flow.thin {
  stroke-width: 1.6;
  opacity: 0.58;
  animation-duration: 36s;
}

.dream-bars {
  opacity: 0.56;
}

.dream-bars path {
  fill: none;
  stroke: rgba(32, 180, 142, 0.32);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 1 18;
  animation: dreamBars 8s ease-in-out infinite alternate;
}

.dream-bars path:last-child {
  stroke: rgba(255, 122, 26, 0.28);
  animation-delay: -3s;
}

.dream-node {
  fill: url("#dream-node");
  transform-box: fill-box;
  transform-origin: center;
  animation: dreamNodePulse 7s ease-in-out infinite;
}

.dream-node.orange {
  fill: rgba(255, 122, 26, 0.24);
}

.dream-pin {
  fill: #20b48e;
  stroke: rgba(6, 16, 24, 0.84);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: dreamPin 7s ease-in-out infinite;
}

.dream-pin.orange {
  fill: #ff7a1a;
}

.ambient-fade {
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.9) 0%, rgba(7, 16, 24, 0.62) 32%, rgba(7, 16, 24, 0.16) 66%, rgba(7, 16, 24, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.08), rgba(7, 16, 24, 0.02) 48%, rgba(7, 16, 24, 0.44));
}

.hero:before,
.hero:after {
  display: none;
}

.hero h1 {
  color: #f8fff9;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 54px rgba(0, 0, 0, 0.42);
}

.hero h1 em {
  color: #ff6a2a;
  text-shadow: 0 0 30px rgba(255, 106, 42, 0.38);
}

.hero .lead {
  color: rgba(232, 242, 237, 0.82);
}

.hero .trust-row div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero .trust-row strong {
  color: #ffffff;
}

.hero .trust-row p {
  color: rgba(222, 232, 227, 0.76);
}

.hero .trust-icon {
  background: rgba(255, 122, 26, 0.15);
  color: #ff8a3d;
}

@keyframes dreamSceneDrift {
  from {
    transform: translate3d(-0.8%, -0.45%, 0) scale(1.01);
  }

  to {
    transform: translate3d(0.9%, 0.5%, 0) scale(1.024);
  }
}

@keyframes dreamCoreFloat {
  from {
    transform: translate3d(-10px, -6px, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(12px, 8px, 0) rotate(1.4deg);
  }
}

@keyframes dreamDash {
  to {
    stroke-dashoffset: -104;
  }
}

@keyframes dreamFlow {
  to {
    stroke-dashoffset: -144;
  }
}

@keyframes dreamBars {
  from {
    opacity: 0.28;
  }

  to {
    opacity: 0.86;
  }
}

@keyframes dreamNodePulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.72);
  }

  48% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes dreamPin {
  0%,
  100% {
    transform: scale(0.94);
  }

  48% {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dream-bg,
  .dream-core,
  .dream-core path,
  .dream-streams .dream-flow,
  .dream-bars path,
  .dream-node,
  .dream-pin {
    animation: none;
  }
}

@media (max-width: 720px) {
  .dream-bg {
    width: 175%;
    max-width: none;
    transform: translateX(-30%);
    animation: none;
  }

  .dream-grid {
    opacity: 0.28;
  }

  .dream-streams {
    opacity: 0.74;
    transform: translateX(120px);
  }

  .dream-streams .dream-flow {
    stroke-width: 2;
  }

  .ambient-fade {
    background:
      linear-gradient(180deg, rgba(7, 16, 24, 0.82) 0%, rgba(7, 16, 24, 0.54) 54%, rgba(7, 16, 24, 0.8) 100%);
  }
}

/* Repair pass: clean logo, typography, and card icons */
:root {
  --font-sans: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
select {
  font-family: var(--font-sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.topbar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 16, 24, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand,
.topbar nav a,
.top-cta,
h1,
h2,
h3,
.cta-row h2,
footer strong,
.calc-form button,
.steps span,
.impact-grid strong,
td strong {
  font-family: var(--font-sans);
}

.brand {
  color: #f8fff9;
  gap: 0.82rem;
  font-size: clamp(1.36rem, 1.8vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  align-items: center;
}

.brand::before {
  display: none;
}

.brand-mark {
  display: block;
  width: 98px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.topbar nav a {
  color: rgba(237, 246, 240, 0.88);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.topbar nav span {
  border-color: rgba(255, 122, 26, 0.32);
  background: rgba(255, 122, 26, 0.12);
  color: #ffb086;
}

.top-cta,
.calc-form button {
  font-weight: 650;
  letter-spacing: -0.012em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.25rem, 4.4vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

h1 em {
  font-weight: 600;
  letter-spacing: -0.05em;
}

.lead {
  font-size: 1.03rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.cta-icon {
  width: 52px;
  height: 52px;
  color: #f05a28;
}

.cta-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cta-icon path,
.cta-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-row article:nth-child(2) .cta-icon {
  color: #167a63;
  background: #eef8f3;
  border-color: rgba(22, 122, 99, 0.24);
}

.quote-highlight .cta-icon {
  color: #f05a28;
  background: #fff0dc;
  border-color: rgba(240, 90, 40, 0.28);
}

.cta-row article {
  align-items: start;
}

.cta-row article > a {
  align-self: start;
  margin-top: 0.1rem;
}

.cta-row article > span {
  align-self: end;
}

.quote-highlight {
  grid-template-columns: 56px minmax(0, 1fr) minmax(190px, 214px);
  align-items: start;
}

.quote-highlight form {
  align-self: start;
  width: 100%;
}

.quote-highlight input,
.quote-highlight button {
  width: 100%;
}

@media (max-width: 720px) {
  .quote-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-mark {
    width: 88px;
    height: 46px;
  }

  .topbar nav,
  .top-cta {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    background: rgba(7, 16, 24, 0.94);
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.35rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }
}

/* Light hero reset: keep the graphic layer, remove the dark command-center backdrop. */
body {
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 122, 26, 0.11), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(22, 122, 99, 0.08), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #fff7ed 50%, #fffaf4 100%);
}

.topbar {
  border-bottom-color: rgba(234, 217, 198, 0.9);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 38px rgba(67, 39, 13, 0.08);
}

.brand {
  color: #17211f;
}

.topbar nav a {
  color: #34413b;
}

.topbar nav span {
  border-color: rgba(240, 90, 40, 0.18);
  background: #fff0dc;
  color: #9c3c17;
}

.brand-mark {
  background: transparent;
  box-shadow: none;
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(32, 180, 142, 0.12), transparent 24rem),
    radial-gradient(circle at 85% 70%, rgba(255, 122, 26, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, #fff7ed 58%, #fffaf4 100%);
  color: #17211f;
  box-shadow:
    inset 0 -1px 0 rgba(234, 217, 198, 0.84),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ambient-fade {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 250, 243, 0.68) 34%, rgba(255, 250, 243, 0.16) 68%, rgba(255, 250, 243, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.2), rgba(255, 250, 243, 0.04) 52%, rgba(255, 247, 237, 0.72));
}

.dream-bg {
  opacity: 0.82;
}

.dream-grid path {
  stroke: rgba(23, 33, 31, 0.12);
}

.dream-core ellipse,
.dream-core path {
  stroke: rgba(22, 122, 99, 0.14);
}

.dream-core path {
  stroke: rgba(240, 90, 40, 0.2);
}

.dream-panels path {
  stroke: rgba(23, 33, 31, 0.1);
}

.dream-panels path:last-child {
  stroke: rgba(23, 33, 31, 0.16);
}

.hero h1 {
  color: #17211f;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 38px rgba(67, 39, 13, 0.08);
}

.hero h1 em {
  color: #f05a28;
  text-shadow: none;
}

.hero .lead {
  color: #4a5852;
}

.hero .trust-row div {
  border-color: rgba(234, 217, 198, 0.92);
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 40px rgba(67, 39, 13, 0.08);
}

.hero .trust-row strong {
  color: #17211f;
}

.hero .trust-row p {
  color: #6c766f;
}

.hero .trust-icon {
  background: #fff0dc;
  color: #f05a28;
}

@media (max-width: 720px) {
  .topbar {
    background: rgba(255, 253, 248, 0.95);
  }

  .ambient-fade {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 250, 243, 0.62) 54%, rgba(255, 247, 237, 0.86) 100%);
  }
}
