:root {
  --tmli-navy: #0b2a40;
  --tmli-navy-deep: #061724;
  --tmli-navy-soft: #174660;
  --tmli-ice: #79cde3;
  --tmli-ice-bright: #c8f4ff;
  --tmli-snow: #f7fafc;
  --tmli-frost: #edf5f8;
  --tmli-warm: #f3eee6;
  --tmli-ink: #17222a;
  --tmli-muted: #5b6973;
  --tmli-line: #d6e1e6;
  --tmli-white: #ffffff;
  --tmli-coral: #e99355;
  --tmli-shadow: 0 24px 70px rgba(6, 23, 36, 0.14);
  --tmli-shadow-soft: 0 12px 34px rgba(6, 23, 36, 0.08);
  --tmli-radius-lg: 30px;
  --tmli-radius-md: 20px;
}

body.tml-ice-maker-page,
body.tml-ice-maker-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.tml-ice-maker-page {
  margin: 0;
  color: var(--tmli-ink);
  background: var(--tmli-snow);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.tml-ice-maker-page img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

body.tml-ice-maker-page a {
  color: inherit;
}

body.tml-ice-maker-page button,
body.tml-ice-maker-page a {
  -webkit-tap-highlight-color: transparent;
}

body.tml-ice-maker-page :focus-visible {
  outline: 3px solid var(--tmli-ice-bright);
  outline-offset: 4px;
}

.tmli-wrap {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.tmli-skip {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--tmli-white);
  background: var(--tmli-navy-deep);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.tmli-skip:focus {
  transform: translateY(0);
}

.tmli-topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 42, 64, 0.1);
  background: rgba(247, 250, 252, 0.94);
  box-shadow: 0 8px 26px rgba(6, 23, 36, 0.04);
  backdrop-filter: blur(14px);
}

body.tml-ice-maker-page.admin-bar .tmli-topbar {
  top: 32px;
}

.tmli-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tmli-ice), var(--tmli-coral));
  transform: scaleX(0);
  transform-origin: left center;
}

.tmli-topbar__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tmli-brand {
  color: var(--tmli-navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.tmli-topbar__label {
  color: var(--tmli-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.tmli-disclosure {
  border-bottom: 1px solid #cbdde5;
  color: #435560;
  background: #e8f2f5;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  padding: 11px 0;
}

.tmli-disclosure strong {
  color: var(--tmli-navy-deep);
}

.tmli-hero {
  position: relative;
  overflow: hidden;
  color: var(--tmli-white);
  background:
    radial-gradient(circle at 88% 16%, rgba(121, 205, 227, 0.22), transparent 28%),
    radial-gradient(circle at 12% 90%, rgba(233, 147, 85, 0.18), transparent 28%),
    linear-gradient(135deg, #061826 0%, #0b2a40 56%, #174b66 100%);
  padding: 58px 0 84px;
}

.tmli-hero::before,
.tmli-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.tmli-hero::before {
  top: -280px;
  right: -180px;
  width: 680px;
  height: 680px;
}

.tmli-hero::after {
  right: 22%;
  bottom: -460px;
  width: 760px;
  height: 760px;
}

.tmli-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 38px;
  align-items: center;
}

.tmli-eyebrow {
  margin: 0 0 14px;
  color: var(--tmli-ice-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.tmli-eyebrow--dark {
  color: #2d7185;
}

.tmli-hero h1,
.tmli-heading,
.tmli-final h2,
.tmli-verdict h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tmli-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--tmli-white);
  font-size: clamp(39px, 9vw, 68px);
  line-height: 1.01;
}

.tmli-hero__lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #edf7fa;
  font-size: clamp(18px, 4.6vw, 24px);
  line-height: 1.45;
}

.tmli-quick-verdict {
  max-width: 720px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--tmli-ice);
  border-radius: 0 18px 18px 0;
  padding: 19px 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.tmli-quick-verdict__label {
  display: block;
  margin-bottom: 4px;
  color: var(--tmli-ice-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tmli-quick-verdict strong {
  display: block;
  color: var(--tmli-white);
  font-size: 17px;
  line-height: 1.4;
}

.tmli-quick-verdict p {
  margin: 7px 0 0;
  color: #d7e8ee;
  font-size: 14px;
}

.tmli-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tmli-pills li {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #f1f7f2;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 13px;
}

.tmli-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 20px;
}

.tmli-hero-stats > div {
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  padding: 14px 15px;
}

.tmli-hero-stats span,
.tmli-hero-stats strong,
.tmli-hero-stats small {
  display: block;
}

.tmli-hero-stats span {
  color: var(--tmli-ice-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tmli-hero-stats strong {
  margin-top: 5px;
  color: var(--tmli-white);
  font-size: 15px;
  line-height: 1.3;
}

.tmli-hero-stats small {
  margin-top: 3px;
  color: #c9dfe6;
  font-size: 11px;
  line-height: 1.35;
}

.tmli-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 27px;
}

.tmli-actions--center {
  align-items: center;
}

.tmli-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tmli-btn:hover {
  transform: translateY(-2px);
}

body.tml-ice-maker-page .tmli-btn--primary {
  color: #211508 !important;
  background: linear-gradient(135deg, #ffd795, #f2a35f) !important;
  box-shadow: 0 14px 34px rgba(233, 147, 85, 0.3);
}

body.tml-ice-maker-page .tmli-btn--primary:hover {
  color: #211508 !important;
  box-shadow: 0 18px 42px rgba(233, 147, 85, 0.4);
}

.tmli-btn--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--tmli-white);
  background: rgba(255, 255, 255, 0.03);
}

.tmli-btn--ghost:hover {
  color: var(--tmli-white);
  background: rgba(255, 255, 255, 0.08);
}

body.tml-ice-maker-page .tmli-btn--dark {
  border: 2px solid #061724 !important;
  color: #061724 !important;
  background: #bceaf4 !important;
  box-shadow: 0 14px 32px rgba(6, 23, 36, 0.2);
}

body.tml-ice-maker-page .tmli-btn--dark:hover {
  color: #04121c !important;
  background: #93dcec !important;
}

.tmli-paid-note {
  max-width: 620px;
  margin: 10px 0 0;
  color: #cbdde4;
  font-size: 11px;
  line-height: 1.5;
}

.tmli-paid-note--center {
  margin-inline: auto;
  color: var(--tmli-muted);
  text-align: center;
}

.tmli-paid-note--light {
  color: #cadde4;
}

.tmli-hero__media {
  position: relative;
  margin: 0;
}

.tmli-picture {
  display: block;
}

.tmli-hero__media .tmli-picture {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--tmli-radius-lg);
  background: #d8e7ec;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
  transform: rotate(1deg);
}

.tmli-hero__media img,
.tmli-image-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.tmli-hero__media figcaption {
  max-width: 520px;
  margin: 12px auto 0;
  color: #c8dce4;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.tmli-snapshot {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.tmli-snapshot__card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(11, 42, 64, 0.09);
  border-radius: 24px;
  background: var(--tmli-white);
  box-shadow: var(--tmli-shadow);
  padding: 24px;
}

.tmli-jumpnav {
  border-bottom: 1px solid var(--tmli-line);
  background: #f2f7f9;
  padding: 20px 0 14px;
}

.tmli-jumpnav__inner {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  align-items: center;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.tmli-jumpnav__inner > span {
  flex: 0 0 auto;
  margin-right: 3px;
  color: var(--tmli-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tmli-jumpnav a {
  flex: 0 0 auto;
  border: 1px solid #cddde4;
  border-radius: 999px;
  color: var(--tmli-navy-deep);
  background: var(--tmli-white);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  padding: 7px 12px;
}

.tmli-jumpnav a:hover {
  border-color: var(--tmli-ice);
  background: #e4f4f8;
}

.tmli-stat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.tmli-stat__number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--tmli-navy-deep);
  background: #d9eff5;
  font-size: 12px;
  font-weight: 900;
}

.tmli-stat strong,
.tmli-stat span {
  display: block;
}

.tmli-stat strong {
  color: var(--tmli-navy-deep);
  font-size: 15px;
}

.tmli-stat span {
  margin-top: 2px;
  color: var(--tmli-muted);
  font-size: 13px;
  line-height: 1.45;
}

.tmli-section {
  padding: 78px 0;
  scroll-margin-top: 84px;
}

.tmli-section--mist {
  background: var(--tmli-frost);
}

.tmli-section--sand {
  background: var(--tmli-warm);
}

.tmli-section--ice {
  background:
    radial-gradient(circle at 90% 12%, rgba(121, 205, 227, 0.22), transparent 30%),
    #eef7f9;
}

.tmli-section--navy {
  color: var(--tmli-white);
  background:
    radial-gradient(circle at 88% 10%, rgba(121, 205, 227, 0.18), transparent 30%),
    linear-gradient(135deg, var(--tmli-navy-deep), var(--tmli-navy-soft));
}

.tmli-section--navy .tmli-heading {
  color: var(--tmli-white);
}

.tmli-section--navy .tmli-subhead {
  color: #d0e2e9;
}

.tmli-section--forest {
  color: var(--tmli-white);
  background:
    radial-gradient(circle at 12% 20%, rgba(170, 203, 101, 0.11), transparent 28%),
    linear-gradient(135deg, var(--tmli-navy-deep), #113d2c);
}

.tmli-eyebrow--blue {
  color: #246b82;
}

.tmli-two-col {
  display: grid;
  gap: 36px;
  align-items: center;
}

.tmli-heading {
  max-width: 830px;
  margin: 0;
  color: var(--tmli-navy-deep);
  font-size: clamp(36px, 8vw, 58px);
  line-height: 1.06;
}

.tmli-section--forest .tmli-heading {
  color: var(--tmli-white);
}

.tmli-subhead {
  max-width: 760px;
  margin: 17px 0 0;
  color: #4b5c67;
  font-size: 18px;
  line-height: 1.58;
}

.tmli-section--forest .tmli-subhead {
  color: #c9d8cc;
}

.tmli-copy > p:not(.tmli-eyebrow):not(.tmli-subhead) {
  margin: 17px 0 0;
  color: #43525c;
}

.tmli-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.tmli-facts > div {
  min-height: 86px;
  border: 1px solid var(--tmli-line);
  border-radius: 15px;
  background: var(--tmli-white);
  box-shadow: 0 7px 18px rgba(6, 23, 36, 0.035);
  padding: 13px;
}

.tmli-facts span,
.tmli-facts strong {
  display: block;
}

.tmli-facts span {
  color: #63727c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tmli-facts strong {
  margin-top: 5px;
  color: var(--tmli-navy-deep);
  font-size: 15px;
  line-height: 1.3;
}

.tmli-source-note {
  display: grid;
  gap: 3px;
  margin-top: 23px;
  border-left: 3px solid var(--tmli-ice);
  border-radius: 0 14px 14px 0;
  color: var(--tmli-navy-deep);
  background: #e8f4f7;
  padding: 15px 17px;
}

.tmli-source-note strong {
  font-size: 13px;
}

.tmli-source-note span {
  color: #536771;
  font-size: 12px;
}

.tmli-measure-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 42px;
  border: 1px solid var(--tmli-line);
  border-radius: 22px;
  background: #eff7f9;
  box-shadow: var(--tmli-shadow-soft);
  padding: 20px 14px;
  text-align: center;
}

.tmli-measure-strip > span {
  color: #4c9cb2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.tmli-measure-strip div strong,
.tmli-measure-strip div span {
  display: block;
}

.tmli-measure-strip div strong {
  color: var(--tmli-navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.tmli-measure-strip div span {
  margin-top: 5px;
  color: var(--tmli-muted);
  font-size: 10px;
  line-height: 1.3;
}

.tmli-image-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(11, 42, 64, 0.1);
  border-radius: var(--tmli-radius-lg);
  background: var(--tmli-white);
  box-shadow: var(--tmli-shadow);
}

.tmli-image-card figcaption {
  border-top: 1px solid var(--tmli-line);
  color: var(--tmli-muted);
  background: var(--tmli-white);
  font-size: 11px;
  line-height: 1.45;
  padding: 12px 16px 14px;
}

.tmli-visual-break {
  background: var(--tmli-frost);
  padding: 0 0 76px;
}

.tmli-visual-break__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--tmli-radius-lg);
  box-shadow: var(--tmli-shadow);
  background: var(--tmli-navy-deep);
}

.tmli-visual-break__figure img {
  min-height: 430px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.tmli-visual-break__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(4, 21, 33, 0.92) 100%);
  pointer-events: none;
}

.tmli-visual-break__copy {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 620px;
  color: var(--tmli-white);
}

.tmli-visual-break__copy > span {
  display: block;
  margin-bottom: 5px;
  color: var(--tmli-ice-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tmli-visual-break__copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 6vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.tmli-visual-break__copy p {
  margin: 9px 0 0;
  color: #d9e7ec;
  font-size: 12px;
}

.tmli-fit-list {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.tmli-fit-list__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 15px;
  align-items: start;
  border: 1px solid #dce2d8;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.tmli-fit-list__item > span {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #365028;
  background: #e3edcc;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 6px;
}

.tmli-fit-list__item--yes > span {
  color: var(--tmli-white);
  background: var(--tmli-navy);
}

.tmli-fit-list__item--maybe > span {
  color: #77441f;
  background: #f1dcc8;
}

.tmli-fit-list__item strong {
  display: block;
  color: var(--tmli-navy-deep);
  line-height: 1.35;
}

.tmli-fit-list__item p {
  margin: 4px 0 0;
  color: var(--tmli-muted);
  font-size: 12px;
  line-height: 1.5;
}

.tmli-fit-form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  border: 1px solid #cbdfe7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--tmli-shadow-soft);
  padding: 22px;
}

.tmli-fit-form__fields {
  display: grid;
  gap: 13px;
}

.tmli-fit-form label,
.tmli-fit-form label > span,
.tmli-fit-form label > small {
  display: block;
}

.tmli-fit-form label > span {
  margin-bottom: 7px;
  color: var(--tmli-navy-deep);
  font-size: 12px;
  font-weight: 850;
}

.tmli-fit-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9cfd8;
  border-radius: 12px;
  color: var(--tmli-ink);
  background: var(--tmli-white);
  font: inherit;
  padding: 9px 12px;
}

.tmli-fit-form input:focus {
  border-color: #3d91a9;
  box-shadow: 0 0 0 3px rgba(121, 205, 227, 0.24);
  outline: 0;
}

.tmli-fit-form label > small {
  margin-top: 5px;
  color: var(--tmli-muted);
  font-size: 10px;
}

.tmli-fit-form .tmli-btn {
  width: 100%;
  cursor: pointer;
}

.tmli-fit-result {
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--tmli-ice);
  border-radius: 0 14px 14px 0;
  color: var(--tmli-navy-deep);
  background: #e5f5f8;
  padding: 15px 17px;
}

.tmli-fit-result[hidden] {
  display: none;
}

.tmli-fit-result.is-fit {
  border-left-color: #238173;
  background: #e7f5f1;
}

.tmli-fit-result.is-tight {
  border-left-color: var(--tmli-coral);
  background: #fbefe6;
}

.tmli-fit-result strong,
.tmli-fit-result span {
  display: block;
}

.tmli-fit-result span {
  color: #52636d;
  font-size: 12px;
  line-height: 1.5;
}

.tmli-capacity-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  margin-top: 38px;
}

.tmli-capacity-grid article {
  display: grid;
  align-content: center;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  padding: 25px;
  text-align: center;
}

.tmli-capacity-grid article span,
.tmli-capacity-grid article strong {
  display: block;
}

.tmli-capacity-grid article span {
  color: var(--tmli-ice-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.tmli-capacity-grid article strong {
  margin-top: 9px;
  color: var(--tmli-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 10vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.tmli-capacity-grid article p {
  max-width: 390px;
  margin: 13px auto 0;
  color: #c9dce4;
  font-size: 13px;
  line-height: 1.55;
}

.tmli-capacity-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  margin: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--tmli-navy-deep);
  background: var(--tmli-ice);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.tmli-reality-strip {
  display: grid;
  gap: 3px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid var(--tmli-coral);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.07);
  padding: 18px 20px;
}

.tmli-reality-strip strong {
  color: var(--tmli-white);
}

.tmli-reality-strip span {
  color: #c9dce4;
  font-size: 13px;
}

.tmli-owner-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.tmli-owner-grid article {
  border: 1px solid var(--tmli-line);
  border-radius: 20px;
  background: var(--tmli-white);
  box-shadow: var(--tmli-shadow-soft);
  padding: 23px;
}

.tmli-owner-grid article > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  color: var(--tmli-navy-deep);
  background: #d9eff5;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tmli-owner-grid strong {
  display: block;
  color: var(--tmli-navy-deep);
  font-size: 16px;
}

.tmli-owner-grid p {
  margin: 8px 0 0;
  color: var(--tmli-muted);
  font-size: 13px;
  line-height: 1.55;
}

.tmli-cards {
  display: grid;
  gap: 17px;
  margin-top: 32px;
}

.tmli-card {
  border: 1px solid #dfe5da;
  border-radius: var(--tmli-radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--tmli-shadow-soft);
  padding: 24px;
}

.tmli-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: var(--tmli-navy-deep);
  background: #dce9bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.tmli-card h3 {
  margin: 0;
  color: var(--tmli-navy-deep);
  font-size: 19px;
  line-height: 1.35;
}

.tmli-card p {
  margin: 9px 0 0;
  color: var(--tmli-muted);
  font-size: 14px;
}

.tmli-section-heading-row {
  display: grid;
  gap: 20px;
}

.tmli-taste-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.tmli-taste-grid article {
  min-height: 210px;
  background: rgba(4, 27, 19, 0.64);
  padding: 24px;
}

.tmli-taste-grid article > span {
  display: block;
  margin-bottom: 27px;
  color: var(--tmli-ice);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tmli-taste-grid strong {
  display: block;
  color: var(--tmli-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.tmli-taste-grid p {
  margin: 8px 0 0;
  color: #c5d4c8;
  font-size: 13px;
  line-height: 1.6;
}

.tmli-steps {
  counter-reset: tmli-step;
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.tmli-steps li {
  counter-increment: tmli-step;
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid #e0e4dc;
  border-radius: 16px;
  background: var(--tmli-white);
  box-shadow: 0 8px 20px rgba(6, 23, 36, 0.04);
  padding: 16px;
}

.tmli-steps li::before {
  content: counter(tmli-step);
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--tmli-white);
  background: var(--tmli-navy);
  font-size: 13px;
  font-weight: 900;
}

.tmli-steps strong {
  display: block;
  color: var(--tmli-navy-deep);
  line-height: 1.35;
}

.tmli-steps p {
  margin: 4px 0 0;
  color: var(--tmli-muted);
  font-size: 13px;
  line-height: 1.5;
}

.tmli-prep-gallery {
  position: relative;
  display: grid;
  gap: 15px;
}

.tmli-image-card--small {
  width: 86%;
  margin: -52px 0 0 auto;
  border: 7px solid var(--tmli-white);
}

.tmli-image-card--small img {
  aspect-ratio: 3 / 1.45;
}

.tmli-gallery-note {
  margin: -4px 3px 0;
  color: var(--tmli-muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.tmli-choice-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.tmli-choice-grid article {
  border: 1px solid rgba(11, 42, 64, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  padding: 18px;
}

.tmli-choice-grid strong {
  color: var(--tmli-navy-deep);
}

.tmli-choice-grid p {
  margin: 5px 0 0;
  color: #4d5b52;
  font-size: 13px;
  line-height: 1.5;
}

.tmli-section--comparison {
  background:
    radial-gradient(circle at 92% 8%, rgba(121, 205, 227, 0.2), transparent 26%),
    #f0f7f9;
}

.tmli-comparison {
  overflow-x: auto;
  margin-top: 32px;
  border: 1px solid var(--tmli-line);
  border-radius: 22px;
  background: var(--tmli-white);
  box-shadow: var(--tmli-shadow-soft);
  -webkit-overflow-scrolling: touch;
}

.tmli-scroll-hint {
  display: none;
}

.tmli-comparison:focus-visible {
  outline-color: var(--tmli-navy);
}

.tmli-comparison table {
  width: 100%;
  min-width: 790px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--tmli-ink);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.tmli-comparison th,
.tmli-comparison td {
  border-right: 1px solid #dfe8ec;
  border-bottom: 1px solid #dfe8ec;
  padding: 17px 18px;
  vertical-align: top;
}

.tmli-comparison th:last-child,
.tmli-comparison td:last-child {
  border-right: 0;
}

.tmli-comparison tbody tr:last-child th,
.tmli-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.tmli-comparison thead th {
  color: var(--tmli-white);
  background: var(--tmli-navy-deep);
  font-size: 14px;
}

.tmli-comparison thead th:first-child {
  min-width: 150px;
}

.tmli-comparison thead .tmli-comparison__featured {
  color: var(--tmli-navy-deep);
  background: #a9e1ee;
}

.tmli-comparison__featured span {
  display: block;
  margin-bottom: 4px;
  color: #235f72;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tmli-comparison tbody th {
  color: var(--tmli-navy-deep);
  background: #f6f9fa;
  font-size: 12px;
}

.tmli-comparison tbody td:nth-child(2) {
  background: #eaf7fa;
  font-weight: 700;
}

.tmli-comparison-takeaway {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  border-left: 4px solid var(--tmli-ice);
  border-radius: 0 16px 16px 0;
  color: var(--tmli-navy-deep);
  background: #e3f2f6;
  padding: 17px 19px;
}

.tmli-comparison-takeaway p,
.tmli-comparison-source {
  margin: 0;
}

.tmli-comparison-takeaway p {
  color: #465a64;
  font-size: 13px;
}

.tmli-comparison-source {
  margin-top: 11px;
  color: var(--tmli-muted);
  font-size: 10px;
  line-height: 1.5;
}

.tmli-procon {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.tmli-list-card {
  border-radius: 24px;
  padding: 25px;
}

.tmli-list-card--pro {
  border: 1px solid #c7dfe7;
  background: #eaf5f8;
}

.tmli-list-card--consider {
  border: 1px solid #e5d1bc;
  background: #f8eee4;
}

.tmli-list-card__title {
  display: flex;
  gap: 13px;
  align-items: center;
}

.tmli-list-card__title span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--tmli-white);
  background: var(--tmli-navy);
  font-weight: 900;
}

.tmli-list-card--consider .tmli-list-card__title span {
  background: #9b6038;
}

.tmli-list-card h3 {
  margin: 0;
  color: var(--tmli-navy-deep);
  font-size: 21px;
}

.tmli-list-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tmli-list-card li {
  position: relative;
  color: #43535d;
  padding-left: 25px;
}

.tmli-list-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3f94ac;
}

.tmli-list-card--consider li::before {
  background: #e99355;
}

.tmli-safety {
  border-block: 1px solid #cddde4;
  background: #e6f1f4;
  padding: 34px 0;
}

.tmli-safety__inner {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  align-items: start;
}

.tmli-safety__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--tmli-white);
  background: var(--tmli-navy-deep);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.tmli-safety h2 {
  margin: 0;
  color: var(--tmli-navy-deep);
  font-size: 19px;
}

.tmli-safety p {
  margin: 7px 0 0;
  color: #50626d;
  font-size: 13px;
}

.tmli-verdict {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  color: var(--tmli-white);
  background: linear-gradient(140deg, #061724, #174660);
  box-shadow: var(--tmli-shadow);
}

.tmli-verdict__score {
  display: grid;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle, rgba(121, 205, 227, 0.18) 0 32%, transparent 33%),
    rgba(255, 255, 255, 0.04);
  text-align: center;
  padding: 30px;
}

.tmli-verdict__score span {
  color: var(--tmli-ice-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.tmli-verdict__score strong {
  margin-top: 10px;
  color: var(--tmli-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.tmli-verdict__copy {
  padding: 30px 24px;
}

.tmli-verdict h2 {
  margin: 0;
  color: var(--tmli-white);
  font-size: clamp(34px, 7.8vw, 57px);
  line-height: 1.03;
}

.tmli-verdict__copy > p:not(.tmli-eyebrow):not(.tmli-paid-note) {
  margin: 18px 0 0;
  color: #d1e1e7;
}

.tmli-verdict-grid {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.tmli-verdict-grid > div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 17px;
}

.tmli-verdict-grid strong,
.tmli-verdict-grid span {
  display: block;
}

.tmli-verdict-grid strong {
  color: var(--tmli-white);
  font-size: 13px;
}

.tmli-verdict-grid span {
  margin-top: 4px;
  color: #c7dae2;
  font-size: 12px;
}

.tmli-faq-wrap {
  max-width: 920px;
}

.tmli-faq {
  display: grid;
  gap: 11px;
  margin-top: 31px;
}

.tmli-faq details {
  border: 1px solid #dbe0d8;
  border-radius: 17px;
  background: var(--tmli-white);
  box-shadow: 0 6px 18px rgba(6, 23, 36, 0.035);
  padding: 0 19px;
}

.tmli-faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--tmli-navy-deep);
  font-weight: 800;
  padding: 18px 38px 18px 0;
}

.tmli-faq summary::-webkit-details-marker {
  display: none;
}

.tmli-faq summary::after {
  content: "+";
  position: absolute;
  top: 11px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--tmli-navy-deep);
  background: #e2f2f6;
  font-size: 22px;
  font-weight: 400;
}

.tmli-faq details[open] summary::after {
  content: "–";
}

.tmli-faq details p {
  margin: 0 0 19px;
  color: var(--tmli-muted);
}

.tmli-final {
  position: relative;
  overflow: hidden;
  color: var(--tmli-white);
  background:
    radial-gradient(circle at 50% 130%, rgba(121, 205, 227, 0.25), transparent 42%),
    var(--tmli-navy-deep);
  text-align: center;
  padding: 80px 0;
}

.tmli-final__inner {
  position: relative;
  z-index: 2;
}

.tmli-final h2 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--tmli-white);
  font-size: clamp(38px, 8vw, 62px);
  line-height: 1.04;
}

.tmli-final__inner > p:not(.tmli-eyebrow):not(.tmli-paid-note) {
  max-width: 670px;
  margin: 18px auto 0;
  color: #cadce3;
}

.tmli-footer {
  color: #c4d3da;
  background: #03111b;
  font-size: 12px;
  padding: 40px 0 112px;
}

.tmli-footer__grid {
  display: grid;
  gap: 19px;
}

.tmli-footer__brand {
  color: var(--tmli-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.tmli-footer p {
  margin: 7px 0 0;
}

.tmli-footer a {
  color: var(--tmli-ice-bright);
}

.tmli-mobile-cta {
  position: fixed;
  z-index: 120;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 17, 27, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(13px);
  padding: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(135%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.tmli-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tmli-mobile-cta .tmli-btn {
  width: 100%;
  min-height: 49px;
  padding: 10px 20px;
}

.tmli-mobile-cta > span {
  color: #c5d6dd;
  font-size: 9px;
  font-weight: 800;
  padding-right: 10px;
}

@media (min-width: 700px) {
  .tmli-wrap {
    width: min(1180px, calc(100% - 64px));
  }

  .tmli-actions {
    flex-direction: row;
    align-items: center;
  }

  .tmli-actions--center {
    justify-content: center;
  }

  .tmli-snapshot__card,
  .tmli-cards,
  .tmli-taste-grid,
  .tmli-procon,
  .tmli-choice-grid,
  .tmli-fit-form__fields,
  .tmli-owner-grid,
  .tmli-verdict-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmli-snapshot__card {
    padding: 27px;
  }

  .tmli-taste-grid article {
    min-height: 230px;
  }

  .tmli-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 980px) {
  .tmli-hero {
    padding: 82px 0 112px;
  }

  .tmli-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 68px;
  }

  .tmli-section {
    padding: 104px 0;
  }

  .tmli-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
  }

  .tmli-two-col--reverse > .tmli-copy {
    order: 2;
  }

  .tmli-two-col--reverse > .tmli-image-card,
  .tmli-two-col--reverse > .tmli-prep-gallery {
    order: 1;
  }

  .tmli-snapshot__card,
  .tmli-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .tmli-section-heading-row {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 70px;
    align-items: end;
  }

  .tmli-section-heading-row .tmli-subhead {
    margin-bottom: 3px;
  }

  .tmli-capacity-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .tmli-owner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tmli-taste-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tmli-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmli-verdict {
    grid-template-columns: 0.34fr 0.66fr;
  }

  .tmli-verdict__score {
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .tmli-verdict__copy {
    padding: 52px;
  }

  .tmli-footer__grid {
    grid-template-columns: 0.85fr 1.25fr 0.8fr;
    gap: 44px;
  }

  .tmli-mobile-cta {
    display: none;
  }
}

@media (max-width: 782px) {
  body.tml-ice-maker-page.admin-bar .tmli-topbar {
    top: 46px;
  }
}

@media (max-width: 460px) {
	.tmli-hero h1 {
		font-size: 38px;
	}

	.tmli-hero__lead {
		font-size: 17px;
	}

	.tmli-scroll-hint {
		display: flex;
		gap: 8px;
		align-items: center;
		margin: 22px 0 -20px;
		color: var(--tmli-navy-deep);
		font-size: 11px;
		font-weight: 850;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.tmli-scroll-hint span {
		color: #2d7185;
		font-size: 18px;
	}

  .tmli-topbar__label {
    max-width: 135px;
    font-size: 9px;
  }

  .tmli-disclosure {
    text-align: left;
  }

  .tmli-mobile-cta > span {
    display: none;
  }

  .tmli-mobile-cta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tmli-skip,
  .tmli-btn,
  .tmli-mobile-cta {
    transition: none;
  }
}
