.al-homepage {
  --al-home-ink: #10231b;
  --al-home-muted: #587064;
  --al-home-green: #2c6b4a;
  --al-home-green-dark: #173f2c;
  --al-home-green-soft: #eef7f2;
  --al-home-border: rgba(37, 89, 63, 0.16);
  --al-home-card: #ffffff;
  --al-home-shadow: 0 18px 45px rgba(16, 42, 30, 0.10);
  --al-home-radius: 24px;
  --al-home-container: min(1160px, calc(100vw - 48px));
  --al-home-section: 84px;

  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  overflow-x: visible;
  background: #f7faf6;
  color: var(--al-home-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:has(.al-homepage) {
  overflow-x: hidden;
}

.elementor-shortcode:has(> .al-homepage),
.elementor-widget-container:has(> .elementor-shortcode > .al-homepage) {
  position: relative !important;
  width: 100dvw !important;
  max-width: 100dvw !important;
  margin-left: calc(50% - 50dvw) !important;
  margin-right: calc(50% - 50dvw) !important;
  padding: 0 !important;
  overflow: visible !important;
}

.elementor-shortcode:has(> .al-homepage) > .al-homepage {
  width: 100% !important;
  max-width: 100% !important;
}

.al-homepage *,
.al-homepage *::before,
.al-homepage *::after {
  box-sizing: border-box;
}

.al-homepage img {
  display: block;
  max-width: 100%;
  height: auto;
}

.al-homepage a {
  color: inherit;
}

.al-homepage__container {
  width: var(--al-home-container);
  margin-inline: auto;
}

.al-homepage:not(.is-auth) [data-home-state="auth"],
.al-homepage.is-auth [data-home-state="guest"] {
  display: none !important;
}

.al-homepage__hero,
.al-homepage__funnel,
.al-homepage__core,
.al-homepage__counts,
.al-homepage__showcase,
.al-homepage__lessons,
.al-homepage__tools,
.al-homepage__instagram,
.al-homepage__newsletter {
  position: relative;
  isolation: isolate;
}

.al-homepage__funnel::before,
.al-homepage__core::before,
.al-homepage__counts::before,
.al-homepage__showcase::before,
.al-homepage__lessons::before,
.al-homepage__tools::before,
.al-homepage__instagram::before,
.al-homepage__newsletter::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: calc(-50vw + 50%) !important;
  right: calc(-50vw + 50%) !important;
  width: auto;
  transform: none;
  background: var(--al-section-bg, #ffffff);
  z-index: -1;
  pointer-events: none;
}

.al-homepage__body {
  background: transparent;
}

.al-homepage__eyebrow {
  margin: 0 0 10px;
  color: var(--al-home-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.al-homepage h1,
.al-homepage h2,
.al-homepage h3 {
  color: var(--al-home-ink);
  letter-spacing: 0;
  line-height: 1.05;
}

.al-homepage h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
}

.al-homepage h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 880;
}

.al-homepage h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 850;
}

.al-homepage p {
  color: var(--al-home-muted);
  line-height: 1.65;
}

.al-homepage__btn {
  --al-btn-bg: #ffffff;
  --al-btn-bg-hover: #f2f8f4;
  --al-btn-bg-active: #e4f0e9;
  --al-btn-border: var(--al-home-border);
  --al-btn-border-hover: rgba(44, 107, 74, 0.28);
  --al-btn-color: var(--al-home-ink);
  --al-btn-color-hover: var(--al-btn-color);
  --al-btn-shadow: 0 8px 20px rgba(16, 42, 30, 0.08);
  --al-btn-shadow-hover: 0 12px 26px rgba(16, 42, 30, 0.12);
  --al-btn-shadow-active: 0 5px 14px rgba(16, 42, 30, 0.08);
  --al-btn-padding-x: 22px;
  --al-btn-min-height: 46px;
  --al-btn-radius: 999px;

  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--al-btn-min-height);
  max-width: 100%;
  padding: 0 var(--al-btn-padding-x);
  border: 1px solid var(--al-btn-border);
  border-radius: var(--al-btn-radius);
  background: var(--al-btn-bg);
  color: var(--al-btn-color);
  -webkit-text-fill-color: var(--al-btn-color);
  box-shadow: var(--al-btn-shadow);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 140ms ease;
}

.al-homepage__btn:hover,
.al-homepage__btn:visited {
  color: var(--al-btn-color-hover);
  -webkit-text-fill-color: var(--al-btn-color-hover);
  text-decoration: none;
}

.al-homepage__btn:hover {
  border-color: var(--al-btn-border-hover);
  background: var(--al-btn-bg-hover);
  box-shadow: var(--al-btn-shadow-hover);
}

.al-homepage__btn:active {
  background: var(--al-btn-bg-active);
  box-shadow: var(--al-btn-shadow-active);
}

.al-homepage__btn:focus {
  outline: none;
}

.al-homepage__btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: var(--al-btn-shadow), 0 0 0 4px rgba(86, 169, 132, 0.32);
}

.al-homepage__btn--primary {
  --al-btn-bg: linear-gradient(135deg, #173f2c 0%, #2c6b4a 56%, #407f5c 100%);
  --al-btn-bg-hover: linear-gradient(135deg, #123624 0%, #2f7350 52%, #4a8b67 100%);
  --al-btn-bg-active: linear-gradient(135deg, #123624 0%, #285f43 100%);
  --al-btn-border: rgba(120, 185, 163, 0.38);
  --al-btn-border-hover: rgba(190, 220, 130, 0.56);
  --al-btn-color: #ffffff;
  --al-btn-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 2px 6px rgba(16, 42, 30, 0.16), 0 14px 30px rgba(16, 42, 30, 0.24);
  --al-btn-shadow-hover: 0 1px 0 rgba(255, 255, 255, 0.24) inset, 0 3px 8px rgba(16, 42, 30, 0.18), 0 18px 36px rgba(16, 42, 30, 0.30);
  --al-btn-shadow-active: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 8px 18px rgba(16, 42, 30, 0.20);

  min-inline-size: 178px;
}

.al-homepage__btn--secondary {
  --al-btn-bg: linear-gradient(180deg, #ffffff 0%, #f2f8f4 100%);
  --al-btn-bg-hover: linear-gradient(180deg, #ffffff 0%, #eaf5ef 100%);
  --al-btn-bg-active: #e4f0e9;
  --al-btn-border: rgba(44, 107, 74, 0.24);
  --al-btn-border-hover: rgba(44, 107, 74, 0.36);
  --al-btn-color: #173f2c;
}

.al-homepage__card {
  border: 1px solid var(--al-home-border);
  border-radius: var(--al-home-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--al-home-shadow);
}

.al-homepage__hero {
  --al-home-hero-pullup: 100px;
  --al-home-header-safe: calc(var(--al-home-hero-pullup) + clamp(18px, 3svh, 32px));

  width: 100%;
  max-width: 100%;
  min-height: calc(clamp(560px, 72svh, 760px) + var(--al-home-hero-pullup));
  margin-top: calc(-1 * var(--al-home-hero-pullup));
  margin-left: 0;
  margin-right: 0;
  display: grid;
  place-items: center;
  padding: var(--al-home-header-safe) 16px clamp(72px, 10svh, 118px);
  overflow: hidden;
  background: #10231b;
  text-align: center;
}

.al-homepage__heroMedia,
.al-homepage__heroMedia img,
.al-homepage__heroOverlay {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.al-homepage__heroMedia img {
  display: block !important;
  object-fit: cover !important;
  object-position: center 42% !important;
  transform: scale(1.03) !important;
}

.al-homepage__heroOverlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.30) 45%, rgba(0, 0, 0, 0.42)),
    radial-gradient(120% 80% at 50% 12%, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.al-homepage__heroContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1040px, 92vw);
}

.al-homepage__hero .al-homepage__eyebrow,
.al-homepage__hero h1,
.al-homepage__heroText {
  color: #ffffff;
}

.al-homepage__hero .al-homepage__eyebrow {
  margin-inline: auto;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.al-homepage__hero h1 {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(36px, 5.2vw, 64px);
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.58), 0 1px 2px rgba(0, 0, 0, 0.34);
}

.al-homepage__heroText {
  max-width: 46rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.al-homepage .al-homepage__hero .al-homepage__eyebrow,
.al-homepage .al-homepage__hero .al-homepage__heroText {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.al-homepage .al-homepage__hero .al-homepage__heroText {
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
}

.al-homepage__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.al-homepage__funnel {
  --al-section-bg: linear-gradient(180deg, #f7faf6 0%, #eef5f0 100%);
  padding: var(--al-home-section) 0;
}

.al-homepage__funnelGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 22px;
  align-items: stretch;
}

.al-homepage__startCard,
.al-homepage__quickCard {
  padding: 30px;
}

.al-homepage__entryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.al-homepage__entryItem {
  display: flex;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--al-home-border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--al-home-ink);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.al-homepage__entryItem:hover,
.al-homepage__entryItem:focus-visible {
  border-color: rgba(44, 107, 74, 0.26);
  background: var(--al-home-green-soft);
  box-shadow: 0 10px 22px rgba(16, 42, 30, 0.08);
  outline: none;
}

.al-homepage__entryIcon,
.al-homepage__coreIcon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eaf4ee;
}

.al-homepage__entryIcon img,
.al-homepage__coreIcon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.al-homepage__entryCopy {
  min-width: 0;
}

.al-homepage__entryCopy strong {
  display: block;
  color: var(--al-home-ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.al-homepage__entryCopy span {
  display: block;
  margin-top: 6px;
  color: var(--al-home-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.al-homepage__quickCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  border: 1px solid rgba(120, 185, 163, 0.38);
  border-radius: var(--al-home-radius);
  background: linear-gradient(180deg, rgba(13, 31, 23, 0.26), rgba(13, 31, 23, 0.74)), radial-gradient(90% 80% at 20% 10%, rgba(120, 185, 163, 0.70), transparent 45%), linear-gradient(135deg, #102a1e 0%, #275c41 52%, #76b49f 100%);
  box-shadow: var(--al-home-shadow);
  color: #f5fbf7;
  overflow: hidden;
}

.al-homepage__quickCard .al-homepage__eyebrow {
  color: rgba(203, 235, 216, 0.94);
}

.al-homepage__quickCard h3 {
  color: #f5fbf7;
}

.al-homepage .al-homepage__quickText {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.al-homepage__quickPrimary {
  margin-top: auto;
}

.al-homepage .al-homepage__quickLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.al-homepage .al-homepage__quickLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(44, 107, 74, 0.24);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f8f4 100%);
  color: #173f2c;
  -webkit-text-fill-color: #173f2c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 8px 20px rgba(16, 42, 30, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.al-homepage .al-homepage__quickLinks a:hover,
.al-homepage .al-homepage__quickLinks a:focus-visible {
  border-color: rgba(44, 107, 74, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #eaf5ef 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.96) inset, 0 12px 26px rgba(16, 42, 30, 0.16);
  outline: none;
}

.al-homepage__core {
  --al-section-bg: #ffffff;
  padding: var(--al-home-section) 0;
}

.al-homepage__sectionHead {
  max-width: 820px;
  margin-bottom: 34px;
}

.al-homepage__sectionHead p {
  max-width: 690px;
}

.al-homepage__sectionHead--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.al-homepage__sectionCta {
  --al-btn-min-height: 42px;
  --al-btn-padding-x: 18px;
  flex: 0 0 auto;
}

.al-homepage__coreGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.al-homepage__coreCard {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.al-homepage__coreCard h3 {
  margin-top: 18px;
  font-size: 1.25rem;
}

.al-homepage__coreCard p {
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.al-homepage__textLink {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--al-home-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.al-homepage__textLink::after {
  content: "→";
  margin-left: 8px;
}

.al-homepage__counts {
  --al-section-bg: linear-gradient(180deg, #eef5f0 0%, #f8fbf9 100%);
  padding: 58px 0;
}

.al-homepage__counts h2 {
  margin-bottom: 26px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.al-homepage__countGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.al-homepage__countItem {
  padding: 22px;
  border: 1px solid var(--al-home-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 42, 30, 0.06);
}

.al-homepage__countItem dd,
.al-homepage__countItem dt {
  margin: 0;
}

.al-homepage__countItem dd {
  color: var(--al-home-green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.al-homepage__countItem dt {
  margin-top: 8px;
  color: var(--al-home-muted);
  font-weight: 750;
}

.al-homepage__showcase {
  --al-section-bg: #ffffff;
  padding: var(--al-home-section) 0;
}

.al-homepage__showcaseCard {
  padding: 24px;
  overflow: hidden;
}

.al-homepage__tabs {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  overflow-x: auto !important;
  padding: 0 0 4px !important;
  scrollbar-width: thin;
}

.al-homepage__tab {
  appearance: none !important;
  flex: 0 0 auto !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid rgba(44, 107, 74, 0.22) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--al-home-green-dark) !important;
  -webkit-text-fill-color: var(--al-home-green-dark) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 6px 14px rgba(16, 42, 30, 0.06) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease !important;
}

.al-homepage__tab:hover {
  border-color: rgba(44, 107, 74, 0.34) !important;
  background: var(--al-home-green-soft) !important;
  color: var(--al-home-green-dark) !important;
  -webkit-text-fill-color: var(--al-home-green-dark) !important;
}

.al-homepage__tab.is-active {
  border-color: var(--al-home-green-dark) !important;
  background: var(--al-home-green-dark) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.al-homepage__tab:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 4px rgba(86, 169, 132, 0.32) !important;
}

.al-homepage__slides {
  margin-top: 24px;
}

.al-homepage__slide {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.al-homepage__slide[hidden] {
  display: none;
}

.al-homepage__slideCopy .al-homepage__btn {
  margin-top: 8px;
}

.al-homepage__slideText {
  margin-bottom: 22px;
}

.al-homepage__productStage {
  position: relative;
  min-height: 460px;
  padding: 4px 4px 26px;
}

.al-homepage__screen {
  margin: 0;
  border-radius: 14px;
  background: transparent;
  overflow: visible;
}

.al-homepage__screenButton {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(37, 89, 63, 0.16);
  border-radius: inherit;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 14px 30px rgba(16, 42, 30, 0.12);
  font: inherit;
  line-height: 0;
  text-align: inherit;
  cursor: zoom-in;
  overflow: hidden;
}

.al-homepage__screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

.al-homepage__screen--main {
  position: relative;
  z-index: 2;
  width: min(92%, 760px);
}

.al-homepage__screen--layer {
  position: absolute;
  z-index: 3;
}

.al-homepage__slide--planner .is-picker {
  right: 0;
  bottom: 0;
  width: 50%;
}

.al-homepage__slide--databases .is-plant {
  right: 4%;
  top: 4%;
  width: 42%;
}

.al-homepage__slide--databases .is-algae {
  right: 0;
  bottom: 0;
  width: 46%;
}

.al-homepage__slide--my-aquariums .al-homepage__screen--main {
  width: min(96%, 760px);
}

.al-homepage__slide--my-aquariums .is-os {
  right: 0;
  bottom: 0;
  width: 48%;
}

.al-homepage__slide--calculators .is-result {
  right: 0;
  bottom: 0;
  width: 54%;
}

.al-homepage__lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 32px);
  background: rgba(5, 18, 13, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.al-homepage__lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.al-homepage__lightbox img {
  display: block;
  max-width: min(100%, 1480px);
  max-height: 92dvh;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.al-homepage__lightboxClose {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.al-homepage__lessons {
  --al-section-bg: linear-gradient(180deg, #f8fbf9 0%, #eef5f0 100%);
  padding: var(--al-home-section) 0;
}

.al-homepage__lessonLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  gap: 18px;
  align-items: start;
}

.al-homepage__lessonCard a,
.al-homepage__lessonRail a {
  color: inherit;
  text-decoration: none;
}

.al-homepage__lessonCard--featured {
  border: 1px solid var(--al-home-border);
  border-radius: var(--al-home-radius);
  background: #ffffff;
  box-shadow: var(--al-home-shadow);
  overflow: hidden;
}

.al-homepage__lessonCard--featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.al-homepage__lessonBody {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.al-homepage__lessonBody em,
.al-homepage__lessonRail > strong {
  color: var(--al-home-green);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.al-homepage__lessonBody strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--al-home-ink);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 880;
  line-height: 1.08;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.al-homepage__lessonBody span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--al-home-muted);
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.al-homepage__lessonRail {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--al-home-border);
  border-radius: var(--al-home-radius);
  background: #ffffff;
  box-shadow: var(--al-home-shadow);
}

.al-homepage__lessonRail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.al-homepage__lessonRail li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(37, 89, 63, 0.13);
  border-radius: 15px;
  background: #f8fbf9;
}

.al-homepage__lessonRail li a:hover,
.al-homepage__lessonRail li a:focus-visible {
  border-color: rgba(44, 107, 74, 0.26);
  background: var(--al-home-green-soft);
  outline: none;
}

.al-homepage__lessonRail li strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--al-home-ink);
  font-size: 0.98rem;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.al-homepage__lessonRail li em {
  color: var(--al-home-green-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
}

.al-homepage__tools {
  --al-section-bg: #ffffff;
  padding: var(--al-home-section) 0;
}

.al-homepage__toolsGrid {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.al-homepage__toolsCopy .al-homepage__btn {
  margin: 6px 0 24px;
}

.al-homepage__toolList {
  display: grid;
  gap: 10px;
}

.al-homepage__toolList a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--al-home-border);
  border-radius: 16px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.al-homepage__toolList strong {
  color: var(--al-home-ink);
}

.al-homepage__toolList span {
  color: var(--al-home-muted);
  font-size: 0.9rem;
}

.al-homepage__toolsStage {
  position: relative;
  min-height: 560px;
  padding: 6px 8px 46px;
}

.al-homepage__toolsScreen {
  margin: 0;
  border: 1px solid rgba(37, 89, 63, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 42, 30, 0.13);
  overflow: visible;
}

.al-homepage__toolsScreen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

.al-homepage__toolsScreen.is-main {
  width: 66%;
}

.al-homepage__toolsScreen.is-side {
  position: absolute;
  top: 44px;
  right: 0;
  width: 38%;
}

.al-homepage__toolsScreen.is-strip {
  position: absolute;
  left: 14%;
  bottom: 0;
  width: 60%;
}

.al-homepage__instagram {
  --al-section-bg: linear-gradient(180deg, #eef5f0 0%, #f8fbf9 100%);
  padding: var(--al-home-section) 0;
}

.al-homepage__instagramHead {
  max-width: 740px;
  margin-bottom: 20px;
}

.al-homepage__ig {
  min-height: 240px;
  border: 1px solid var(--al-home-border);
  border-radius: var(--al-home-radius);
  background: #ffffff;
  box-shadow: var(--al-home-shadow);
  overflow: hidden;
}

.al-homepage__newsletter {
  --al-section-bg: #ffffff;
  padding: var(--al-home-section) 0;
}

.al-homepage__newsletterBox {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--al-home-border);
  border-radius: var(--al-home-radius);
  background: linear-gradient(180deg, #ffffff, #f7faf6);
  box-shadow: var(--al-home-shadow);
}

.al-homepage .al-homepage__newsletterForm form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 12px !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative !important;
}

.al-homepage .al-homepage__newsletterForm form fieldset {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.al-homepage .al-homepage__newsletterForm form :is(input[type="hidden"], .ff_ctc_form_load_time) {
  display: none !important;
}

.al-homepage .al-homepage__newsletterForm form .ff-el-group,
.al-homepage .al-homepage__newsletterForm form .ff-el-input--content,
.al-homepage .al-homepage__newsletterForm form .ff-el-form-control,
.al-homepage .al-homepage__newsletterForm form .ff_submit_btn_wrapper {
  position: static !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  width: 100% !important;
}

.al-homepage .al-homepage__newsletterForm form .ff-el-group:has(input[type="email"]),
.al-homepage .al-homepage__newsletterForm form .ff-el-group:has(input[type="text"]) {
  grid-column: 1 !important;
  min-width: 0 !important;
}

.al-homepage .al-homepage__newsletterForm form .ff_submit_btn_wrapper {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: auto !important;
}

.al-homepage .al-homepage__newsletterForm form input[type="email"],
.al-homepage .al-homepage__newsletterForm form input[type="text"],
.al-homepage .al-homepage__newsletterForm form .ff-el-form-control {
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.16) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.97) !important;
  color: rgba(11, 18, 16, 0.86) !important;
  box-shadow: none !important;
  font: inherit !important;
}

.al-homepage .al-homepage__newsletterForm form :is(.ff-btn.ff-btn-submit.ff-btn-sm.ff_btn_no_style, .ff-btn-submit, .ff-btn, button[type="submit"], input[type="submit"]) {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  width: auto !important;
  min-width: 118px !important;
  height: 46px !important;
  padding: 5px 16px !important;
  margin: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #2c6b4a 0%, #173f2c 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18), 0 18px 40px rgba(44, 107, 74, 0.24) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: transform 120ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.al-homepage .al-homepage__newsletterForm form :is(.ff-btn.ff-btn-submit.ff-btn-sm.ff_btn_no_style, .ff-btn-submit, .ff-btn, button[type="submit"], input[type="submit"]):active {
  transform: translateY(1px) !important;
}

@media (hover: hover) {
  .al-homepage .al-homepage__newsletterForm form :is(.ff-btn.ff-btn-submit.ff-btn-sm.ff_btn_no_style, .ff-btn-submit, .ff-btn, button[type="submit"], input[type="submit"]):hover {
    filter: saturate(1.06) brightness(1.02) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18), 0 22px 52px rgba(44, 107, 74, 0.28) !important;
  }
}

@media (max-width: 1024px) {
  .al-homepage {
    --al-home-container: min(100% - 36px, 860px);
    --al-home-section: 68px;
  }

  .al-homepage__funnelGrid,
  .al-homepage__slide,
  .al-homepage__toolsGrid,
  .al-homepage__newsletterBox {
    grid-template-columns: 1fr;
  }

  .al-homepage__entryGrid,
  .al-homepage__coreGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .al-homepage__coreCard {
    min-height: 245px;
  }

  .al-homepage__productStage {
    min-height: 420px;
  }

  .al-homepage__lessonLayout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .al-homepage .al-homepage__newsletterForm form,
  .al-homepage .al-homepage__newsletterForm form fieldset {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .al-homepage .al-homepage__newsletterForm form .ff_submit_btn_wrapper {
    grid-column: 1 !important;
    justify-self: stretch !important;
  }

  .al-homepage .al-homepage__newsletterForm form :is(.ff-btn.ff-btn-submit.ff-btn-sm.ff_btn_no_style, .ff-btn-submit, .ff-btn, button[type="submit"], input[type="submit"]) {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 760px) {
  .al-homepage {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
  }

  .al-homepage__hero {
    --al-home-hero-pullup: 0px;
    --al-home-header-safe: calc(18px + env(safe-area-inset-top));

    width: 100vw;
    max-width: none;
    height: auto !important;
    min-height: 100svh;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    place-items: start center;
    padding: var(--al-home-header-safe) 0 clamp(18px, 4svh, 30px);
    overflow: clip;
  }

  @supports (min-height: 100dvh) {
    .al-homepage__hero {
      min-height: 100dvh;
    }
  }

  .al-homepage__heroContent {
    width: min(calc(100% - 32px), 560px) !important;
    padding: calc(18px + env(safe-area-inset-top)) 0 18px !important;
  }

  .al-homepage__hero h1 {
    max-width: 12ch;
    font-size: clamp(24px, 8vw, 32px);
  }

  .al-homepage__heroText {
    max-width: 29ch;
    font-size: 14px;
  }

  .al-homepage__hero .al-homepage__actions {
    gap: 12px !important;
  }

  .al-homepage__hero .al-homepage__btn {
    min-height: 44px !important;
    padding: 0 16px !important;
    font-size: 13.5px !important;
  }

  .al-homepage__sectionHead--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .al-homepage__productStage {
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 0;
  }

  .al-homepage__screen--main,
  .al-homepage__screen--layer,
  .al-homepage__slide--planner .is-picker,
  .al-homepage__slide--databases .is-plant,
  .al-homepage__slide--databases .is-algae,
  .al-homepage__slide--my-aquariums .al-homepage__screen--main,
  .al-homepage__slide--my-aquariums .is-os,
  .al-homepage__slide--calculators .is-result {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .al-homepage__screen {
    border-radius: 10px;
  }

  .al-homepage__screenButton {
    box-shadow: 0 10px 22px rgba(16, 42, 30, 0.10);
  }

  .al-homepage__toolsStage {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 0;
  }

  .al-homepage__toolsScreen.is-main,
  .al-homepage__toolsScreen.is-side,
  .al-homepage__toolsScreen.is-strip {
    position: relative;
    inset: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .al-homepage {
    --al-home-container: min(100% - 28px, 560px);
    --al-home-section: 44px;
  }

  .al-homepage h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  .al-homepage h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }

  .al-homepage h3 {
    font-size: 1.45rem;
  }

  .al-homepage__hero {
    min-height: calc(100svh + var(--al-home-hero-pullup));
    padding-bottom: clamp(28px, 6svh, 48px);
  }

  .al-homepage__hero h1 {
    max-width: 12ch;
    font-size: clamp(24px, 8vw, 32px);
  }

  .al-homepage__heroText {
    max-width: 29ch;
    font-size: 14px;
  }

  .al-homepage__startCard,
  .al-homepage__quickCard,
  .al-homepage__showcaseCard,
  .al-homepage__lessonBody,
  .al-homepage__lessonRail,
  .al-homepage__newsletterBox {
    padding: 18px;
  }

  .al-homepage__sectionHead {
    margin-bottom: 22px;
  }

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

  .al-homepage__entryItem {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 108px;
    padding: 16px 10px;
    text-align: center;
  }

  .al-homepage__entryIcon {
    width: 40px;
    height: 40px;
  }

  .al-homepage__entryCopy span {
    display: none;
  }

  .al-homepage__coreGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .al-homepage__coreCard {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 16px;
  }

  .al-homepage__coreIcon {
    width: 42px;
    height: 42px;
  }

  .al-homepage__coreCard h3 {
    margin: 0;
    font-size: 1.05rem;
  }

  .al-homepage__coreCard p {
    display: none !important;
  }

  .al-homepage:not(.is-auth) .al-homepage__coreCard p[data-home-state="guest"],
  .al-homepage.is-auth .al-homepage__coreCard p[data-home-state="auth"] {
    display: none !important;
  }

  .al-homepage__textLink {
    margin-top: 0;
    font-size: 0;
  }

  .al-homepage__textLink::after {
    margin-left: 0;
    font-size: 1.2rem;
  }

  .al-homepage__countGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .al-homepage__countItem {
    padding: 16px;
  }

  .al-homepage__tabs {
    gap: 8px !important;
    margin-inline: -2px !important;
    padding-inline: 2px !important;
  }

  .al-homepage__tab {
    min-height: 44px !important;
    padding: 0 16px !important;
    font-size: 0.88rem !important;
  }

  .al-homepage__lessonLayout,
  .al-homepage__toolList {
    gap: 12px;
  }

  .al-homepage__lessonBody span {
    display: none;
  }

  .al-homepage__lessonRail li a {
    min-height: 54px;
    padding: 12px;
  }

  .al-homepage__toolList span {
    display: none;
  }

}

@media (max-width: 390px) {
  .al-homepage {
    --al-home-container: min(100% - 24px, 360px);
  }

  .al-homepage__btn {
    width: 100%;
  }

  .al-homepage__hero .al-homepage__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px !important;
  }

  .al-homepage__entryGrid {
    gap: 10px;
  }

  .al-homepage__coreCard {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-auto-rows: auto;
    align-items: center;
  }

  .al-homepage__coreIcon {
    grid-row: 1 / span 2;
  }

  .al-homepage__textLink {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    max-width: 100%;
    margin-top: -4px;
    font-size: 0.82rem;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .al-homepage__textLink::after {
    display: none;
    content: "";
  }
}
