/*
Theme Name: HaveMy.Link
Theme URI: https://havemy.link
Author: James
Description: A fresh, compact WordPress theme for HaveMy.Link.
Version: 1.1.9
Requires at least: 6.0
Tested up to: 6.6
Text Domain: havemylink
*/

:root {
  --page: #f1fbd9;
  --surface: rgba(255, 255, 255, 0.9);
  --ink: #12200f;
  --text: #415039;
  --muted: rgba(65, 80, 57, 0.72);
  --line: rgba(34, 84, 34, 0.14);
  --sky: #48bbe6;
  --sky-soft: #c7f4fb;
  --green: #2f7b34;
  --green-dark: #174f27;
  --green-deep: #092f19;
  --green-soft: #d6ef95;
  --lime: #b6df32;
  --orange: #ff6a18;
  --orange-dark: #d83d0f;
  --red-orange: #e94822;
  --gold: #ffc934;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 22px 70px rgba(23, 79, 39, 0.12);
  --width: 1040px;
  --content: 700px;
  --header-logo-width: 270px;
  --footer-logo-width: 330px;
  --font: "Aptos", "Segoe UI", Arial, sans-serif;
  --heading-font: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

html {
  font-size: 15.5px;
  min-height: 100%;
  background: var(--page);
  overflow-x: hidden;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #eafaff;
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: none;
}

a {
  color: var(--green-dark);
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--heading-font);
  line-height: 0.98;
  letter-spacing: 0;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(100% - 28px, var(--width));
  margin: 0 auto;
  padding: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: auto;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 26px 18px 42px;
  border-bottom: 1px solid rgba(18, 32, 15, 0.08);
  background:
    radial-gradient(circle at 16% -34%, rgba(72, 187, 230, 0.32), transparent 18rem),
    radial-gradient(circle at 84% -36%, rgba(255, 201, 52, 0.42), transparent 17rem),
    radial-gradient(circle at 50% -40%, rgba(214, 239, 149, 0.78), transparent 18rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(9, 47, 25, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 18px;
  background:
    radial-gradient(120% 36px at 50% 100%, rgba(47, 123, 52, 0.16) 0 48%, transparent 50%),
    linear-gradient(90deg, rgba(72, 187, 230, 0.18), rgba(255, 201, 52, 0.18), rgba(255, 106, 24, 0.14));
  pointer-events: none;
}

.site-branding {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 950;
  line-height: 0.9;
  text-decoration: none;
}

.site-brand img,
.site-brand .custom-logo {
  display: block;
  width: auto;
  max-width: min(var(--header-logo-width), 76vw);
  max-height: 86px;
  object-fit: contain;
}

.site-tagline {
  color: #07544d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #155b50;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;
}

.site-menu a:hover,
.site-menu a:focus {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.site-menu > li:last-child > a,
.site-menu a[href*="/register"] {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #155b50;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 42px 18px 34px;
}

.front-page-content {
  position: relative;
  isolation: isolate;
  margin-top: 76px;
  padding-bottom: 28px;
}

.front-page-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -76px;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background:
    url("assets/hml-scenery-hero.jpg") center top / 100% auto fixed no-repeat,
    #eafaff;
  pointer-events: none;
}

.front-page-content > * + * {
  margin-top: 1.2rem;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(31, 90, 42, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 104% -8%, rgba(255, 109, 29, 0.16), transparent 13rem),
    radial-gradient(ellipse 54% 28% at 4% 105%, rgba(23, 79, 39, 0.13), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.86));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -84px;
  width: 260px;
  height: 170px;
  border-radius: 50%;
  background: rgba(47, 123, 52, 0.1);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4.3vw, 3.75rem);
  font-weight: 950;
  text-shadow: 0 18px 36px rgba(9, 47, 25, 0.08);
}

.hero-lede {
  max-width: 530px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.proof-row span {
  position: relative;
  min-height: 58px;
  padding: 52px 13px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.78rem;
}

.proof-row span::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 109, 29, .42), transparent 30%),
    linear-gradient(135deg, var(--green-deep), var(--green-dark));
  box-shadow: 0 10px 18px rgba(9, 47, 25, .16);
}

.proof-row span::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M10%2013a5%205%200%200%200%207.1%200l2-2a5%205%200%200%200-7.1-7.1l-1.1%201.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M14%2011a5%205%200%200%200-7.1%200l-2%202a5%205%200%200%200%207.1%207.1l1.1-1.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M10%2013a5%205%200%200%200%207.1%200l2-2a5%205%200%200%200-7.1-7.1l-1.1%201.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M14%2011a5%205%200%200%200-7.1%200l-2%202a5%205%200%200%200%207.1%207.1l1.1-1.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.proof-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 950;
}

.hero-checker {
  max-width: 650px;
  margin-top: 24px;
}

.hero-checker label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.claim-row {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 10px;
  border: 1px solid rgba(31, 90, 42, .14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 240, .88));
  box-shadow:
    0 22px 54px rgba(23, 79, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.claim-field {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 56px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  box-shadow: inset 0 0 0 1px rgba(31, 90, 42, .07);
}

.claim-prefix {
  flex: 0 0 auto;
  padding-left: 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  white-space: nowrap;
}

.claim-row input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 900 1rem/1.2 var(--font);
}

.claim-row input::placeholder {
  color: rgba(65, 80, 57, 0.42);
}

.claim-row button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font: 950 0.92rem/1 var(--font);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 13px 28px rgba(255, 109, 29, 0.24);
}

.claim-status {
  display: block;
  min-height: 18px;
  margin-top: 8px;
  padding-left: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.device-showcase {
  position: relative;
  min-height: 350px;
  isolation: isolate;
}

.device-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 2%;
  bottom: 2%;
  width: 94%;
  height: 58%;
  border-radius: 52% 48% 12% 12% / 72% 72% 24% 24%;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 109, 29, 0.22), transparent 9rem),
    linear-gradient(135deg, rgba(9, 47, 25, 0.14), rgba(47, 123, 52, 0.22));
  filter: blur(0.2px);
}

.device-showcase img {
  display: block;
  filter: drop-shadow(0 18px 24px rgba(18, 32, 15, 0.16));
}

.device-desktop {
  width: min(100%, 520px);
  margin: 0 auto;
}

.device-tablet,
.device-mobile {
  position: absolute;
  z-index: 2;
}

.device-tablet {
  width: 28%;
  left: -1%;
  bottom: 18%;
}

.device-mobile {
  width: 14%;
  right: 1%;
  bottom: 17%;
}

.section-card {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 24, 0.24), transparent 13rem),
    radial-gradient(circle at 0% 100%, rgba(72, 187, 230, 0.22), transparent 16rem),
    radial-gradient(circle at 74% 100%, rgba(182, 223, 50, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 202, 0.88));
  box-shadow:
    0 18px 50px rgba(23, 79, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.section-card:nth-of-type(even) {
  border-color: rgba(9, 47, 25, 0.18);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 109, 29, 0.2), transparent 13rem),
    radial-gradient(circle at 10% 0%, rgba(142, 212, 240, 0.18), transparent 14rem),
    radial-gradient(ellipse 86% 44% at 16% 100%, rgba(168, 207, 60, 0.3), transparent 70%),
    linear-gradient(135deg, rgba(249, 253, 239, 0.96), rgba(221, 240, 202, 0.82));
}

.section-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--lime), var(--gold), var(--orange), var(--green-dark));
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.intro-grid article {
  padding: 24px;
}

.intro-grid article + article {
  border-left: 1px solid var(--line);
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 18%, rgba(247, 201, 74, 0.54), transparent 30%),
    radial-gradient(circle at 20% 88%, rgba(255, 109, 29, 0.34), transparent 34%),
    linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.intro-grid h2,
.steps-grid h3 {
  font-size: 1.04rem;
  font-weight: 950;
}

.intro-grid p,
.feature-section p,
.steps-grid p,
.final-cta p {
  margin-top: 10px;
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.feature-section h2,
.section-heading h2,
.final-cta h2,
.page-header h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 950;
}

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

.feature-list span {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 109, 29, 0.12), transparent 7rem),
    radial-gradient(circle at 0% 100%, rgba(142, 212, 240, 0.16), transparent 8rem),
    rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.feature-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 950;
}

.steps-section {
  padding: 28px;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 22px;
  text-align: center;
}

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

.steps-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 100%, rgba(168, 207, 60, 0.2), transparent 9rem),
    radial-gradient(circle at 100% 0%, rgba(247, 201, 74, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.8);
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 76% 10%, rgba(247, 201, 74, 0.32), transparent 14rem),
    radial-gradient(circle at 18% 94%, rgba(255, 109, 29, 0.28), transparent 16rem),
    radial-gradient(ellipse 74% 42% at 84% 118%, rgba(168, 207, 60, 0.45), transparent 74%),
    linear-gradient(135deg, #092f19 0%, var(--green-dark) 54%, #2f7b34 100%);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: -50%;
  width: 74%;
  height: 72%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 109, 29, 0.26), rgba(247, 201, 74, 0.16));
  pointer-events: none;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.page-layout {
  position: relative;
  isolation: isolate;
  max-width: 880px;
  margin: 34px auto 0;
  padding: 34px;
}

.page-layout::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -34px;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background:
    url("assets/hml-scenery-hero.jpg") center top / 100% auto fixed no-repeat,
    #eafaff;
  pointer-events: none;
}

.page-layout.hml-page {
  max-width: min(100%, var(--width));
}

.page-header,
.page-content {
  max-width: var(--content);
  margin: 0 auto;
}

.page-header {
  margin-bottom: 26px;
  text-align: center;
}

.page-content {
  font-size: 0.98rem;
}

.page-content > * + * {
  margin-top: 1.05rem;
}

.page-content h2,
.page-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.page-content p,
.page-content li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
}

.page-content ul,
.page-content ol {
  padding-left: 1.35rem;
}

.page-content a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.page-content .wp-block-button__link,
.page-content input[type="submit"],
.page-content button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(255, 109, 29, 0.24);
}

.page-content img,
.page-content .wp-block-image img {
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(23, 79, 39, 0.12);
}

.page-content blockquote,
.page-content .wp-block-quote {
  margin-right: 0;
  margin-left: 0;
  padding: 20px 24px;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 123, 52, 0.1), transparent 8rem),
    rgba(255, 255, 255, 0.78);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  width: auto;
  margin: 0 calc(50% - 50vw) 0;
  padding: 64px calc((100vw - min(100vw - 28px, var(--width))) / 2) 46px;
  border-top: 1px solid rgba(9, 47, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 248, 239, 0.9), rgba(205, 230, 196, 0.94)),
    #d6e8d6;
  color: #00443e;
}

.front-page + .site-footer {
  margin-top: 0;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 230px;
  background:
    radial-gradient(ellipse 36% 55% at 0% 106%, rgba(9, 47, 25, 0.28), transparent 72%),
    radial-gradient(ellipse 44% 48% at 36% 112%, rgba(182, 223, 50, 0.24), transparent 72%),
    radial-gradient(ellipse 36% 48% at 100% 108%, rgba(255, 106, 24, 0.18), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(23, 79, 39, 0.1) 62%, rgba(9, 47, 25, 0.18) 100%);
  opacity: 0.9;
}

.site-footer::after {
  z-index: 0;
  right: 7vw;
  bottom: 30px;
  width: 210px;
  height: 120px;
  background:
    radial-gradient(circle, rgba(255, 109, 29, 0.2) 1.2px, transparent 1.8px) 0 0 / 17px 17px,
    radial-gradient(circle, rgba(9, 47, 25, 0.12) 1.1px, transparent 1.7px) 8px 8px / 17px 17px;
  opacity: 0.72;
}

.footer-brand,
.footer-menus,
.footer-text {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 950;
  line-height: 0.9;
  text-decoration: none;
}

.footer-logo img,
.footer-logo .custom-logo {
  display: block;
  width: auto;
  max-width: min(var(--footer-logo-width), 76vw);
  max-height: 96px;
  object-fit: contain;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.footer-text {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(0, 68, 62, 0.78);
  font-size: 0.95rem;
  text-align: center;
}

.footer-menu-column h2 {
  margin: 0 0 34px;
  color: #00443e;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: lowercase;
}

.footer-menu {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  color: #00443e;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
}

@media (max-width: 900px) {
  body {
    background:
      url("assets/hml-scenery-hero.jpg") center top / cover fixed no-repeat,
      #eafaff;
    background-attachment: fixed;
  }

  .front-page-content::before,
  .page-layout::before,
  .hml-page-template::before {
    content: none;
  }

  .site-header {
    gap: 16px;
    padding: 22px 14px 30px;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .site-nav {
    order: 3;
    width: min(100%, 360px);
  }

  .site-menu {
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    background: #f6fae9;
  }

  .site-header.menu-open .site-menu {
    display: grid;
  }

  .site-menu a {
  font-family: var(--font);
    justify-content: center;
    width: 100%;
    padding: 0 12px;
    letter-spacing: 0.08em;
  }

  .hero,
  .feature-section,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .front-page + .site-footer {
    margin-top: 0;
  }

  .footer-menus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .hero {
    gap: 20px;
    min-height: auto;
    padding: 34px 10px 26px;
  }

  .device-showcase {
    min-height: auto;
  }

  .device-desktop {
    display: none;
  }

  .device-tablet {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .device-mobile {
    width: 90px;
    right: 6%;
    bottom: 7%;
  }

  .intro-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.25rem);
  }

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

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 18px, var(--width));
  }

  .hero-copy {
    padding: 18px;
    border-radius: 22px;
  }

  .device-tablet {
    display: none;
  }

  .device-mobile {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .claim-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
    border-radius: 18px;
    padding: 9px;
  }

  .claim-prefix {
    padding-left: 8px;
    font-size: 0.82rem;
  }

  .claim-row input {
    min-height: 38px;
    padding: 0 4px;
    font-size: 0.82rem;
  }

  .claim-row button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    margin-top: 7px;
  }

  .button-link {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 26px;
    padding-top: 38px;
    padding-bottom: 150px;
  }

  .front-page + .site-footer {
    margin-top: 0;
  }

  .footer-menus {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-menu-column h2 {
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-logo img,
  .footer-logo .custom-logo {
    max-width: min(var(--footer-logo-width), 68vw);
    max-height: 72px;
  }

  .footer-menu-column {
    padding: 14px;
    border: 1px solid rgba(0, 68, 62, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 12px 28px rgba(9, 47, 25, 0.05);
  }

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

  .footer-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    font-size: 0.9rem;
    font-weight: 650;
  }

  .footer-text {
    align-self: end;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(240, 246, 234, 0.82);
    font-size: 0.82rem;
  }

  .site-footer::before {
    height: 150px;
    opacity: 0.72;
  }

  .site-footer::after {
    right: 18px;
    bottom: 86px;
    width: 150px;
    height: 90px;
    opacity: 0.42;
  }

  .feature-section,
  .steps-section,
  .final-cta,
  .page-layout {
    padding: 22px;
  }
}

/*
HaveMy.Link reusable content page styles.
Use the wrapper class hml-page on shortcode/content pages.
*/

.hml-page {
  --hml-page-ink: #14210f;
  --hml-page-text: #354027;
  --hml-page-muted: rgba(53, 64, 39, .72);
  --hml-page-leaf: #4f8a2f;
  --hml-page-leaf-dark: #1f5a2a;
  --hml-page-deep: #092f19;
  --hml-page-lime: #b6df32;
  --hml-page-sky: #48bbe6;
  --hml-page-sky-soft: #c7f4fb;
  --hml-page-gold: #ffc934;
  --hml-page-orange: #ff6a18;
  --hml-page-orange-dark: #d83d0f;
  --hml-page-red-orange: #e94822;
  --hml-page-cream: #fffaf0;
  --hml-page-line: rgba(31, 90, 42, .14);
  --hml-page-shadow: 0 24px 70px rgba(31, 90, 42, .12);
  --hml-page-soft-shadow: 0 14px 38px rgba(31, 90, 42, .08);
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  margin: 0 auto;
  color: var(--hml-page-text);
  font-family: var(--font);
}

.hml-page::before {
  content: none;
}

.hml-page * {
  box-sizing: border-box;
}

.hml-page h1,
.hml-page h2,
.hml-page h3,
.hml-page p {
  margin-top: 0;
  letter-spacing: 0;
}

.hml-section {
  position: relative;
  margin: 38px 0;
}

.hml-section:nth-of-type(odd)::after {
  content: none;
}

.hml-section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px -18px;
  border-radius: 34px;
  background:
    radial-gradient(ellipse 74% 46% at 4% 100%, rgba(31, 90, 42, .08), transparent 70%),
    radial-gradient(ellipse 58% 42% at 100% 8%, rgba(255, 201, 52, .08), transparent 72%);
  pointer-events: none;
}

.hml-hero-grid,
.hml-split,
.hml-grid {
  display: grid;
  gap: 24px;
}

.hml-hero-grid {
  position: relative;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1fr);
  align-items: center;
}

.hml-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

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

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

.hml-hero,
.hml-panel,
.hml-card,
.hml-placeholder,
.hml-cta,
.hml-stat,
.hml-step {
  border: 1px solid var(--hml-page-line);
  border-radius: 28px;
  box-shadow: var(--hml-page-shadow);
}

.hml-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 86% 10%, rgba(72, 187, 230, .46), transparent 18rem),
    radial-gradient(circle at 14% 88%, rgba(255, 201, 52, .4), transparent 20rem),
    radial-gradient(circle at 94% 66%, rgba(255, 106, 24, .24), transparent 16rem),
    radial-gradient(circle at 48% 100%, rgba(182, 223, 50, .28), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, .98), #fff5db 46%, rgba(182, 223, 50, .3));
}

.hml-hero > *,
.hml-cta > * {
  position: relative;
  z-index: 1;
}

.hml-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: -31%;
  width: 94%;
  height: 56%;
  border-radius: 58% 42% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(ellipse 62% 60% at 22% 0%, rgba(255, 106, 24, .48), transparent 64%),
    radial-gradient(ellipse 44% 40% at 82% 2%, rgba(72, 187, 230, .34), transparent 70%),
    linear-gradient(135deg, rgba(9, 47, 25, .38), rgba(31, 90, 42, .44));
}

.hml-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 24px;
  width: 168px;
  height: 132px;
  background:
    radial-gradient(circle, rgba(9, 47, 25, .18) 1.4px, transparent 2px) 0 0 / 17px 17px,
    radial-gradient(circle, rgba(255, 122, 31, .12) 1.2px, transparent 1.8px) 8px 8px / 17px 17px;
  opacity: .72;
  pointer-events: none;
}

.hml-hero-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 44px, rgba(255, 106, 24, .18) 45px 56px, transparent 57px),
    radial-gradient(circle at 50% 50%, transparent 0 70px, rgba(72, 187, 230, .14) 71px 82px, transparent 83px);
  pointer-events: none;
}

.hml-eyebrow {
  margin-bottom: 12px;
  color: var(--hml-page-leaf-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hml-title {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--hml-page-ink);
  font-size: clamp(38px, 5.9vw, 66px);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 18px 38px rgba(9, 47, 25, .08);
}

.hml-title span {
  color: var(--hml-page-orange);
  text-shadow: 0 10px 26px rgba(255, 122, 31, .12);
}

.hml-lede {
  max-width: 650px;
  color: var(--hml-page-muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.hml-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hml-button,
.hml-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hml-button:hover,
.hml-button:focus {
  transform: translateY(-2px);
}

.hml-button-primary,
.hml-button-primary:visited {
  background:
    radial-gradient(circle at 72% 18%, rgba(246, 189, 47, .46), transparent 32%),
    linear-gradient(135deg, var(--hml-page-orange), var(--hml-page-orange-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 122, 31, .3);
}

.hml-button-secondary,
.hml-button-secondary:visited {
  border: 1px solid var(--hml-page-line);
  background: #fff;
  color: var(--hml-page-ink);
  box-shadow: 0 14px 32px rgba(31, 90, 42, .1);
}

.hml-button-ghost,
.hml-button-ghost:visited {
  border: 1px solid rgba(31, 90, 42, .2);
  background: rgba(255, 255, 255, .54);
  color: var(--hml-page-leaf-dark);
  box-shadow: 0 12px 28px rgba(31, 90, 42, .07);
}

.hml-page .su-button {
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.hml-page .su-button span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hml-page .su-button:hover span,
.hml-page .su-button:focus span {
  transform: translateY(-2px);
}

.hml-primary-button span {
  background:
    radial-gradient(circle at 72% 18%, rgba(246, 189, 47, .46), transparent 32%),
    linear-gradient(135deg, var(--hml-page-orange), var(--hml-page-orange-dark)) !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(255, 122, 31, .3) !important;
}

.hml-secondary-button span {
  border: 1px solid var(--hml-page-line) !important;
  background: #fff !important;
  color: var(--hml-page-ink) !important;
  box-shadow: 0 14px 32px rgba(31, 90, 42, .1) !important;
}

.hml-ghost-button span {
  border: 1px solid rgba(31, 90, 42, .2) !important;
  background: rgba(255, 255, 255, .54) !important;
  color: var(--hml-page-leaf-dark) !important;
  box-shadow: 0 12px 28px rgba(31, 90, 42, .07) !important;
}

.hml-claim-checker {
  max-width: 620px;
  margin-top: 28px;
}

.hml-claim-checker label {
  display: block;
  margin-bottom: 10px;
  color: var(--hml-page-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hml-claim-row,
.claim-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(31, 90, 42, .13);
  border-radius: 999px;
  background:
    radial-gradient(circle at 0% 0%, rgba(142, 212, 240, .12), transparent 10rem),
    radial-gradient(circle at 100% 0%, rgba(246, 189, 47, .14), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 240, .84));
  box-shadow:
    0 24px 64px rgba(31, 90, 42, .12),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hml-claim-field,
.claim-field {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: inset 0 0 0 1px rgba(31, 90, 42, .07);
}

.hml-claim-prefix,
.claim-prefix {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 0 0 18px;
  color: var(--hml-page-ink);
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 950;
  white-space: nowrap;
}

.hml-claim-row input,
.claim-row input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 12px 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--hml-page-ink);
  font: 900 clamp(13px, 1.25vw, 16px)/1.2 var(--font);
  box-shadow: none;
  text-align: left;
}

.hml-claim-row input::placeholder,
.claim-row input::placeholder {
  color: rgba(53, 64, 39, .42);
}

.hml-claim-row button,
.claim-row button {
  flex: 0 0 auto;
  min-width: clamp(128px, 31%, 176px);
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hml-page-orange), var(--hml-page-orange-dark));
  color: #fff;
  font: 950 clamp(13px, 1.2vw, 15px)/1 var(--font);
  white-space: nowrap;
  box-shadow:
    0 18px 34px rgba(255, 122, 31, .28),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.hml-claim-row button:hover,
.hml-claim-row button:focus,
.claim-row button:hover,
.claim-row button:focus {
  transform: translateY(-2px);
  box-shadow:
    0 24px 44px rgba(255, 122, 31, .34),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}

.hml-claim-row.is-checking,
.claim-row.is-checking {
  border-color: rgba(79, 138, 47, .28);
}

.hml-claim-row.is-available,
.claim-row.is-available {
  border-color: rgba(31, 138, 54, .46);
  box-shadow: 0 22px 58px rgba(31, 138, 54, .14);
}

.hml-claim-row.is-unavailable,
.claim-row.is-unavailable {
  border-color: rgba(220, 60, 38, .44);
}

.hml-claim-status,
.claim-status {
  display: block;
  min-height: 20px;
  margin-top: 9px;
  padding-left: 16px;
  color: var(--hml-page-leaf-dark);
  font-size: 13px;
  font-weight: 850;
}

.hml-claim-status.is-unavailable,
.claim-status.is-unavailable {
  color: #b93a23;
}

.hml-section-heading {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.hml-section-heading h2 {
  margin-bottom: 12px;
  color: var(--hml-page-ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.05;
}

.hml-section-heading p {
  color: var(--hml-page-muted);
  font-weight: 650;
  line-height: 1.65;
}

.hml-card,
.hml-panel,
.hml-step {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border-color: rgba(18, 32, 15, .13);
  background: rgba(255, 255, 255, .9);
  box-shadow:
    0 18px 42px rgba(9, 47, 25, .1),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hml-card:nth-child(even),
.hml-step:nth-child(even),
.hml-panel:nth-child(even) {
  border-color: rgba(18, 32, 15, .13);
  background: rgba(255, 255, 255, .9);
}

.hml-card:nth-child(3n),
.hml-step:nth-child(3n) {
  background: rgba(255, 255, 255, .9);
}

.hml-card:hover,
.hml-panel:hover,
.hml-step:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 58px rgba(9, 47, 25, .16),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}

.hml-card:before,
.hml-step:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--hml-page-orange);
}

.hml-card::after,
.hml-step::after,
.hml-panel::after {
  content: none;
}

.hml-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--hml-page-leaf-dark);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(9, 47, 25, .18);
}

.hml-icon:before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background: #fff;
  -webkit-mask: var(--hml-icon-mask) center / contain no-repeat;
  mask: var(--hml-icon-mask) center / contain no-repeat;
}

.hml-icon-profile {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M20%2021a8%208%200%200%200-16%200%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%278%27%20r%3D%274%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3C/svg%3E");
}

.hml-icon-link {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M10%2013a5%205%200%200%200%207.1%200l2-2a5%205%200%200%200-7.1-7.1l-1.1%201.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M14%2011a5%205%200%200%200-7.1%200l-2%202a5%205%200%200%200%207.1%207.1l1.1-1.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-image {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Crect%20x%3D%273%27%20y%3D%274%27%20width%3D%2718%27%20height%3D%2716%27%20rx%3D%273%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3Ccircle%20cx%3D%278.5%27%20cy%3D%279%27%20r%3D%271.7%27%20fill%3D%27black%27/%3E%3Cpath%20d%3D%27M21%2016l-5-5-9%209%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-video {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Crect%20x%3D%273%27%20y%3D%276%27%20width%3D%2713%27%20height%3D%2712%27%20rx%3D%273%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3Cpath%20d%3D%27M16%2010l5-3v10l-5-3z%27%20fill%3D%27black%27/%3E%3C/svg%3E");
}

.hml-icon-shop {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%209h12l-1%2011H7L6%209z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M9%209a3%203%200%200%201%206%200%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-calendar {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Crect%20x%3D%273%27%20y%3D%274%27%20width%3D%2718%27%20height%3D%2717%27%20rx%3D%273%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3Cpath%20d%3D%27M8%202v5M16%202v5M3%2010h18%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-briefcase {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Crect%20x%3D%273%27%20y%3D%277%27%20width%3D%2718%27%20height%3D%2713%27%20rx%3D%273%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3Cpath%20d%3D%27M9%207V5h6v2M3%2012h18%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-plus {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%205v14M5%2012h14%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-magic {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M14%204l6%206-10%2010-6-6L14%204z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linejoin%3D%27round%27/%3E%3Cpath%20d%3D%27M5%203v4M3%205h4M19%2017v4M17%2019h4%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-icon-share {
  --hml-icon-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M7%2017L17%207M9%207h8v8%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.hml-card h3,
.hml-panel h3,
.hml-step h3 {
  margin-bottom: 10px;
  color: var(--hml-page-ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.15;
}

.hml-card p,
.hml-panel p,
.hml-step p {
  color: var(--hml-page-muted);
  font-weight: 650;
  line-height: 1.65;
}

.hml-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hml-proof div,
.hml-stat {
  position: relative;
  min-height: 104px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(18, 32, 15, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow:
    0 14px 32px rgba(9, 47, 25, .09),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
}

.hml-proof div::before,
.hml-stat::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--hml-page-leaf-dark);
  box-shadow: 0 12px 22px rgba(9, 47, 25, .16);
}

.hml-proof div::after,
.hml-stat::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 26px;
  width: 22px;
  height: 22px;
  background: #fff;
  -webkit-mask: var(--hml-proof-mask) center / contain no-repeat;
  mask: var(--hml-proof-mask) center / contain no-repeat;
}

.hml-proof div:nth-child(1),
.hml-stat:nth-child(1) {
  --hml-proof-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M20%2021a8%208%200%200%200-16%200%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%278%27%20r%3D%274%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27/%3E%3C/svg%3E");
}

.hml-proof div:nth-child(2),
.hml-stat:nth-child(2) {
  --hml-proof-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M10%2013a5%205%200%200%200%207.1%200l2-2a5%205%200%200%200-7.1-7.1l-1.1%201.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3Cpath%20d%3D%27M14%2011a5%205%200%200%200-7.1%200l-2%202a5%205%200%200%200%207.1%207.1l1.1-1.1%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-proof div:nth-child(3),
.hml-stat:nth-child(3) {
  --hml-proof-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4%2019V5M4%2019h16M8%2016v-5M12%2016V8M16%2016v-8M20%2016V6%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27/%3E%3C/svg%3E");
}

.hml-proof strong,
.hml-stat strong {
  display: block;
  color: var(--hml-page-ink);
  font-weight: 950;
}

.hml-proof span,
.hml-stat span {
  display: block;
  margin-top: 4px;
  color: var(--hml-page-muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.hml-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 390px;
  padding: 22px;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 10%, rgba(255, 255, 255, .98) 0 42px, transparent 43px),
    radial-gradient(circle at 78% 18%, rgba(255, 201, 52, .38), transparent 9rem),
    radial-gradient(circle at 8% 78%, rgba(72, 187, 230, .34), transparent 14rem),
    radial-gradient(circle at 96% 88%, rgba(255, 106, 24, .22), transparent 12rem),
    linear-gradient(135deg, rgba(255, 250, 240, .98), rgba(232, 244, 211, .92));
}

.hml-hero-grid .hml-placeholder {
  min-height: 520px;
  overflow: hidden;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.hml-placeholder::before,
.hml-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hml-placeholder::before {
  z-index: 0;
  right: -28%;
  bottom: -34%;
  width: 92%;
  height: 58%;
  border-radius: 56% 44% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(ellipse 62% 58% at 26% 0%, rgba(255, 106, 24, .44), transparent 66%),
    radial-gradient(ellipse 42% 42% at 82% 0%, rgba(72, 187, 230, .3), transparent 70%),
    linear-gradient(135deg, rgba(6, 61, 32, .32), rgba(79, 138, 47, .28));
}

.hml-placeholder::after {
  z-index: 1;
  inset: 28px 18px 18px;
  background: url("assets/mockup-mobile-framed.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 24px 32px rgba(9, 47, 25, .22));
}

.hml-hero-grid .hml-placeholder::before {
  right: -28%;
  bottom: -18%;
  width: 120%;
  height: 42%;
  background:
    radial-gradient(ellipse 72% 56% at 22% 0%, rgba(255, 106, 24, .52), transparent 56%),
    radial-gradient(ellipse 44% 44% at 78% 2%, rgba(255, 201, 52, .38), transparent 66%),
    linear-gradient(135deg, rgba(6, 61, 32, .8), rgba(47, 123, 52, .5));
  filter: drop-shadow(0 24px 30px rgba(9, 47, 25, .16));
}

.hml-hero-grid .hml-placeholder::after {
  inset: 44px -8px -8px;
  background-size: auto 95%;
  transform: rotate(-3deg) translateX(5%);
}

.hml-split .hml-placeholder::after {
  inset: 22px 12px 12px;
  background-image: url("assets/mockup-tablet-framed.png");
  background-size: contain;
}

.hml-placeholder .hml-mock-phone {
  visibility: hidden;
}

.hml-placeholder-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--hml-page-leaf-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hml-placeholder-label {
  font-size: 0;
}

.hml-placeholder-label::before {
  content: "Live profile preview";
  font-size: 12px;
}

.hml-mock-phone {
  max-width: 270px;
  margin: 36px auto 0;
  padding: 16px;
  border: 10px solid #17210f;
  border-radius: 34px;
  background: #fbfdf5;
  box-shadow: 0 24px 52px rgba(20, 33, 15, .22);
}

.hml-mock-cover {
  height: 86px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--hml-page-leaf), var(--hml-page-lime));
}

.hml-mock-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 10px;
  padding: 9px 11px;
  border: 1px solid var(--hml-page-line);
  border-radius: 15px;
  background: #fff;
  color: var(--hml-page-ink);
  font-size: 13px;
  font-weight: 900;
}

.hml-mock-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hml-page-orange), var(--hml-page-gold));
}

.hml-check-list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.hml-check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 30px;
  color: var(--hml-page-text);
  font-weight: 700;
  line-height: 1.5;
}

.hml-check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 8px;
  border-left: 4px solid var(--hml-page-orange);
  border-bottom: 4px solid var(--hml-page-orange);
  transform: rotate(-45deg);
}

.hml-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 201, 52, .46), transparent 18rem),
    radial-gradient(circle at 12% 100%, rgba(255, 106, 24, .4), transparent 18rem),
    radial-gradient(ellipse 82% 42% at 74% 112%, rgba(182, 223, 50, .56), transparent 72%),
    linear-gradient(135deg, #061f12 0%, #0d3d21 54%, #2f7b34 100%);
}

.hml-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -6%;
  bottom: -30%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 122, 31, .2), rgba(142, 212, 240, .12));
}

.hml-cta .hml-eyebrow,
.hml-cta .hml-title,
.hml-cta .hml-lede {
  color: #fff;
}

.hml-cta .hml-lede {
  color: rgba(255, 255, 255, .82);
}

.hml-faq .su-spoiler {
  overflow: hidden;
  border: 1px solid var(--hml-page-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(31, 90, 42, .06);
}

.hml-faq .su-spoiler-title {
  color: var(--hml-page-ink) !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .hml-hero-grid,
  .hml-split,
  .hml-grid-3,
  .hml-grid-4 {
    grid-template-columns: 1fr;
  }

  .hml-proof {
    grid-template-columns: 1fr;
  }

  .hml-hero-grid .hml-placeholder {
    min-height: 430px;
    overflow: hidden;
    border-color: var(--hml-page-line);
    background:
      radial-gradient(circle at 28% 10%, rgba(255, 255, 255, .98) 0 42px, transparent 43px),
      radial-gradient(circle at 78% 18%, rgba(246, 189, 47, .22), transparent 9rem),
      linear-gradient(135deg, rgba(255, 250, 240, .98), rgba(232, 244, 211, .92));
    box-shadow: var(--hml-page-shadow);
  }
}

@media (max-width: 560px) {
  .hml-actions {
    display: grid;
  }

  .hml-button {
    width: 100%;
  }

  .hml-page .su-button {
    width: 100%;
  }

  .hml-page .su-button span {
    width: 100%;
  }

  .hml-claim-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    border-radius: 24px;
    padding: 12px;
  }

  .claim-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    border-radius: 24px;
    padding: 12px;
  }

  .hml-claim-field,
  .claim-field {
    min-height: 48px;
  }

  .hml-claim-prefix,
  .claim-prefix {
    min-height: auto;
    padding: 0 0 0 14px;
    font-size: 14px;
  }

  .hml-claim-row input,
  .claim-row input {
    min-height: 48px;
    font-size: 14px;
  }

  .hml-claim-row button,
  .claim-row button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
  }

  .hml-hero,
  .hml-panel,
  .hml-card,
  .hml-placeholder,
  .hml-cta,
  .hml-step {
    border-radius: 22px;
  }

  .hml-placeholder {
    min-height: 330px;
  }

  .hml-hero-grid .hml-placeholder::after {
    inset: 20px 8px 8px;
    background-size: contain;
    transform: none;
  }

  .hml-split .hml-placeholder::after {
    background-image: url("assets/mockup-mobile-framed.png");
  }

  .hml-title {
    font-size: clamp(32px, 11vw, 46px);
  }
}

.hml-page-template {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--width));
  margin: 34px auto 0;
}

.hml-page-template::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -34px;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background:
    url("assets/hml-scenery-hero.jpg") center top / 100% auto fixed no-repeat,
    #eafaff;
  pointer-events: none;
}

.hml-page-template > .hml-page {
  width: 100%;
}
/* Contact page form alignment */
.hml-contact form,
.hml-contact .hml-contact-form,
.hml-contact .wpcf7,
.hml-contact .wpforms-container,
.hml-contact .gform_wrapper {
  margin-top: 20px;
  font-family: var(--font);
  color: var(--hml-page-text);
}

.hml-contact form p,
.hml-contact form label,
.hml-contact form span,
.hml-contact .hml-contact-form p,
.hml-contact .hml-contact-form label,
.hml-contact .wpcf7 p,
.hml-contact .wpcf7 label,
.hml-contact .wpforms-container label,
.hml-contact .gform_wrapper label {
  color: var(--hml-page-text);
  font-family: var(--font);
  font-weight: 750;
  line-height: 1.45;
}

.hml-contact input[type="text"],
.hml-contact input[type="email"],
.hml-contact input[type="tel"],
.hml-contact input[type="url"],
.hml-contact select,
.hml-contact textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 13px 16px;
  border: 1px solid var(--hml-page-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  color: var(--hml-page-ink);
  font: 750 15px/1.35 var(--font);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 10px 24px rgba(31, 90, 42, .06);
}

.hml-contact textarea {
  min-height: 132px;
  resize: vertical;
}

.hml-contact input:focus,
.hml-contact select:focus,
.hml-contact textarea:focus {
  outline: 0;
  border-color: rgba(31, 90, 42, .36);
  box-shadow: 0 0 0 4px rgba(168, 201, 77, .18), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.hml-contact input[type="submit"],
.hml-contact button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hml-page-orange), var(--hml-page-orange-dark));
  color: #fff;
  font: 950 15px/1 var(--font);
  box-shadow: 0 18px 38px rgba(255, 122, 31, .3);
  cursor: pointer;
}

.hml-contact input[type="submit"]:hover,
.hml-contact button[type="submit"]:hover,
.hml-contact input[type="submit"]:focus,
.hml-contact button[type="submit"]:focus {
  transform: translateY(-2px);
}

/* Contact page background reset */
.hml-contact,
.hml-contact .hml-section {
  background: transparent;
}
/* Contact page compact layout */
.hml-contact-simple {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.hml-contact-simple .hml-panel {
  padding: clamp(24px, 4vw, 42px);
}

.hml-contact-simple .hml-title {
  max-width: none;
  font-size: clamp(36px, 5.2vw, 58px);
}

.hml-contact-simple .hml-lede {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.hml-contact-simple .hml-forms-wrapper {
  margin-top: 28px;
  background: transparent !important;
  box-shadow: none !important;
}

.hml-contact-simple .hml-forms-wrapper > .hml-auth-head {
  display: none !important;
}

.hml-contact-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hml-page-line);
  color: var(--hml-page-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
/* Shared page heading centering */
.hml-section-heading .hml-title,
.hml-section-heading .hml-lede {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
