:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(226, 47%, 16%);
    --primary: #fe621d;
    --orange-light: hsl(30, 100%, 90%);
  }
  
  body {
    margin: 0;
    background-color: var(--background);
    font-family: "Alegreya Sans", sans-serif;
    color: #111827;
  }
  
  .home_container {
    width: 100%;
  }
  
  .site_shell {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #f8fafc;
  }
  
  .home_bg_layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(
        135deg,
        rgba(255, 245, 240, 1) 0%,
        rgba(255, 175, 140, 0.62) 26%,
        rgba(255, 135, 85, 0.58) 56%,
        rgba(255, 120, 60, 0.55) 100%
      ),
      radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.62) 0%, transparent 54%),
      radial-gradient(circle at 78% 68%, rgba(254, 98, 29, 0.38) 0%, transparent 66%),
      radial-gradient(circle at 42% 82%, rgba(255, 160, 120, 0.32) 0%, transparent 74%),
      radial-gradient(circle at 55% 18%, rgba(254, 98, 29, 0.22) 0%, transparent 72%),
      radial-gradient(circle at 8% 78%, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
  }
  
  .site_header {
    position: relative;
    z-index: 5000;
  }
  
  .site_main,
  .site_footer {
    position: relative;
    z-index: 1;
  }
  
  /* HOME NAVBAR */
  .home_navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
  }
  
  .home_nav_wrap {
    width: min(1160px, 94vw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 5;
  }
  
  .home_navLogo {
    height: 34px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  
  .hero_navlinks {
    position: relative;
    z-index: 5;
  }
  
  .home_navPillWrap {
    position: relative;
    display: inline-block;
  }
  
  .home_navPill {
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: visible;
    list-style: none;
    margin: 0;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  }
  
  .home_navPillHighlight {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    opacity: 0;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease;
  }
  
  .home_navPillItem {
    position: relative;
    z-index: 2;
    display: inline-flex;
  }
  
  .home_navPillLink {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.72);
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
  }
  
  .home_navPillLink:hover {
    background: transparent;
    color: rgba(0, 0, 0, 0.85);
  }
  
  .home_navPillLink.is_active {
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
  }
  
  .home_navPillIcon {
    opacity: 0.65;
    font-size: 12px;
    line-height: 1;
  }
  
  .hero_signin {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .hero_signin button {
    background-color: transparent;
    width: 100px;
    height: 50px;
    border: 0;
    outline: 0;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    font-weight: 700;
  }
  
  .hero_signin button:nth-child(2) {
    width: 120px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
  }
  
  .hero_signin button:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    width: 0;
    height: 3px;
    transition: 0.3s;
  }
  
  .hero_signin button:nth-child(1):hover::after {
    width: 100%;
  }
  
  .hero_signinLogin {
    width: 78px !important;
    height: 42px !important;
    border-radius: 24px !important;
    background: transparent;
    font-size: 15px;
  }
  
  .hero_signinRegister {
    width: 108px !important;
    height: 42px !important;
    border-radius: 24px !important;
    background-color: var(--primary);
    color: #fff;
    font-size: 15px;
  }
  
  /* HOME HERO */
  .home_hero {
    width: min(1160px, 94vw);
    margin: auto !important;
    text-align: center;
    padding-top: 118px;
    position: relative;
  }
  
  .home_heroHand {
    position: absolute;
    width: 100%;
    max-width: 420px;
    z-index: -1;
    left: -52px;
    top: 240px;
  }
  
  .home_heroInner {
    text-align: center;
    margin: 0 auto;
    width: min(800px, 90vw);
  }
  
  .home_heroTitle {
    margin: 18px 0 0;
    font-size: clamp(44px, 6.2vw, 50px);
    line-height: 1.02;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.92);
    letter-spacing: -0.02em;
  }
  
  .home_heroAccent {
    font-family: Arial, sans-serif;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none !important;
    background-image: none !important;
    position: static;
  }
  
  .home_heroSub {
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.68);
    max-width: 60ch;
  }
  
  .home_heroBody {
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.56);
    max-width: 76ch;
  }
  
  .home_heroCtas {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .home_heroCtaPrimary,
  .home_heroCtaSecondary {
    height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition:
      transform 160ms ease,
      filter 160ms ease,
      background 160ms ease,
      color 160ms ease;
  }
  
  .home_heroCtaPrimary {
    justify-content: space-between;
    gap: 16px;
    padding: 0 12px 0 22px;
    min-width: 240px;
    background-color: rgba(255, 255, 255, 0.253);
    color: #fff;
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  }
  
  .home_heroCtaPrimaryIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 98, 29, 0.58);
    backdrop-filter: blur(10px) saturate(1.15);
    -webkit-backdrop-filter: blur(10px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }
  
  .home_heroCtaSecondary {
    min-width: 220px;
    background: color-mix(in oklab, var(--orange-light) 55%, white);
    color: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .home_heroCtaPrimary:hover,
  .home_heroCtaSecondary:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
  }
  
  .home_heroPyramid {
    position: relative;
    height: 190px;
    margin-top: 44px;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  
  .home_heroPyramidLayer {
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% 0;
    height: 170px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
    clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
  }
  
  .home_heroPyramidLayer.is_back {
    width: min(900px, 96vw);
    opacity: 0.92;
    transform: perspective(900px) rotateX(58deg) translateY(40px);
  }
  
  .home_heroPyramidLayer.is_mid {
    width: min(760px, 92vw);
    opacity: 1;
    transform: perspective(900px) rotateX(58deg) translateY(22px);
  }
  
  .home_heroPyramidLayer.is_front {
    width: min(620px, 86vw);
    opacity: 0.96;
    transform: perspective(900px) rotateX(58deg) translateY(6px);
  }
  
  .home_heroSwift {
    display: inline-block;
    animation: swift-breeze 2.8s ease-in-out infinite;
    will-change: transform;
  }
  
  @keyframes swift-breeze {
    0% {
      transform: translateX(0) translateY(0);
    }
    25% {
      transform: translateX(2px) translateY(-1px);
    }
    50% {
      transform: translateX(5px) translateY(0);
    }
    75% {
      transform: translateX(2px) translateY(1px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }
  
  @media (max-width: 900px) {
    .hero_navlinks {
      display: none;
    }
  }
  
  @media (max-width: 720px) {
    .home_hero {
      padding: 112px 0 50px;
    }
  
    .home_heroSub {
      font-size: 16px;
    }
  
    .home_heroPyramid {
      height: 150px;
    }
  
    .home_heroPyramidLayer {
      height: 140px;
    }
  
    .home_heroHand {
      max-width: 240px;
      left: -24px;
      top: 280px;
    }
  }
  
  /* PLATFORM CAROUSEL */
  .platform-carousel {
    width: 100%;
    padding: 22px 0 34px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  
  .platform-carousel__row {
    overflow: hidden;
  }
  
  .platform-carousel__track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  
  .platform-carousel__group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
  }
  
  .platform-carousel__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 15px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    color: #000;
    font-size: 15px;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .platform-carousel__track,
    .trustedBy__logosTrack {
      animation: none;
      transform: translate3d(0, 0, 0) !important;
    }
  }
  
  .section-divider {
    margin: 10px 0;
  }
  
  .section-divider hr {
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    height: 4px;
    margin: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.22);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  }
  
  /* TRUSTED BY */
  .trustedBy {
    width: 100%;
    padding: 0 0 120px;
  }
  
  .trustedBy__inner {
    width: min(1160px, 94vw);
    margin: 0 auto;
    text-align: center;
  }
  
  .trustedBy__title {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.92);
    font-weight: 900;
    font-size: clamp(44px, 6vw, 62px);
  }
  
  .trustedBy__titleItalic {
    font-family: "Playwrite NZ Basic Guides", cursive;
    font-weight: 900;
    color: var(--primary);
  }
  
  .trustedBy__titleStrong {
    font-weight: 900;
  }
  
  .trustedBy__sub {
    margin: 22px auto 0;
    max-width: 60ch;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.62);
    white-space: pre-line;
  }
  
  .trustedBy__logos {
    margin: 64px auto 0;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 14%, black 86%, transparent);
    mask-image: linear-gradient(to right, transparent, black 14%, black 86%, transparent);
  }
  
  .trustedBy__logosTrack {
    display: flex;
    width: max-content;
    animation: trustedby-marquee 40s linear infinite;
    will-change: transform;
  }
  
  .trustedBy__logosGroup {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 6px 18px;
  }
  
  .trustedBy__logo {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.38);
  }
  
  @keyframes trustedby-marquee {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-50%, 0, 0);
    }
  }
  
  @media (max-width: 720px) {
    .trustedBy {
      padding: 70px 0 90px;
    }
  
    .trustedBy__logosGroup {
      gap: 28px;
    }
  
    .trustedBy__logo {
      font-size: 26px;
    }
  }
  
  /* DEV */
  .dev {
    width: 100%;
    padding: 40px 0;
  }
  
  .dev__inner {
    width: min(1160px, 94vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 64px;
  }
  
  .dev__media {
    padding: 40px;
  }
  
  .dev__imageShell {
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
    padding: 14px;
  }
  
  .dev__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 26px;
  }
  
  .dev__scramble {
    font-size: clamp(38px, 4.6vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.9);
  }
  
  .dev__line {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  
  .dev__lineText {
    white-space: pre-wrap;
  }
  
  .dev__cursor {
    width: 10px;
    height: 0.85em;
    border-radius: 999px;
    background: color-mix(in oklab, var(--primary) 70%, rgba(0, 0, 0, 0.2));
    opacity: 1;
    transform: translateY(2px);
  }
  
  .dev__cursor.is_blink {
    animation: dev-cursor-blink 1.4s linear infinite;
  }
  
  @keyframes dev-cursor-blink {
    0%,
    45% {
      opacity: 1;
    }
    50%,
    95% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .dev__meta {
    margin-top: 26px;
  }
  
  .dev__name {
    font-weight: 900;
    color: var(--primary);
    font-size: 18px;
  }
  
  @media (max-width: 920px) {
    .dev__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .dev__imageShell {
      width: min(420px, 92vw);
      margin: 0 auto;
    }
  }
  
  /* IMPACT SECTION */
  .impact {
    width: 100%;
    padding: 120px 0;
  }
  
  .impact__inner {
    width: min(1160px, 94vw);
    margin: 0 auto;
    text-align: center;
  }
  
  .impact__badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 26px;
  }
  
  .impact__title {
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0;
  }
  
  .impact__sub {
    margin: 24px auto 0;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
  }
  
  .impact__metrics {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .impact__metricValue {
    font-size: 46px;
    font-weight: 900;
  }
  
  .impact__metricDesc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .impact__metricLink {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    text-decoration: none;
    color: var(--primary);
  }
  
  /* SUPPORT SECTION */
  .support {
    margin-top: 120px;
  }
  
  .support__inner {
    width: min(1160px, 94vw);
    margin: 0 auto;
  }
  
  .support__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .support__badge {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .support__title {
    font-size: clamp(38px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 900;
  }
  
  .support__sub {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
  }
  
  .support__rule {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 30px 0;
  }
  
  .support__quote {
    font-size: 18px;
    line-height: 1.7;
  }
  
  .support__byline {
    margin-top: 16px;
    font-weight: 700;
  }
  
  .support__button,
  .impact__ctaButton,
  .wp-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
  
  .support__button {
    margin-top: 28px;
  }
  
  .support__frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  }
  
  .support__frameVideo {
    width: 100%;
    display: block;
  }
  
  /* CTA */
  .impact__ctaWrap {
    margin-top: 120px;
    text-align: center;
  }
  
  .impact__ctaTitle {
    font-size: 32px;
    font-weight: 900;
  }
  
  .impact__ctaButton {
    margin-top: 20px;
  }
  
  @media (max-width: 900px) {
    .impact__metrics,
    .support__grid {
      grid-template-columns: 1fr;
    }
  
    .support__grid {
      gap: 40px;
    }
  }
  
  /* PRODUCT OVERVIEW */
  .product-overview {
    width: 100%;
    padding: 90px 0 110px;
  }
  
  .product-overview__container {
    width: min(1160px, 94vw);
    margin: 0 auto;
  }
  
  .product-overview__title {
    margin: 0 0 72px;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #222;
  }
  
  .product-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px 28px;
  }
  
  .product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    min-height: 305px;
    padding: 72px 28px 30px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  }
  
  .product-card__icon {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.55),
      0 8px 18px rgba(0, 0, 0, 0.14);
  }
  
  .product-card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    color: #2b2b2b;
    text-transform: uppercase;
  }
  
  .product-card__text {
    margin: 20px auto 0;
    max-width: 30ch;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.68);
    font-weight: 500;
  }
  
  .product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-width: 116px;
    height: 46px;
    padding: 0 22px;
    border: 2px solid #3a3a3a;
    border-radius: 4px;
    text-decoration: none;
    color: #2b2b2b;
    font-size: 17px;
    font-weight: 700;
    background: transparent;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }
  
  .product-card__button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
  }
  
  .product-card__priceLabel {
    margin: 26px 0 4px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
  }
  
  .product-card__price {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #2b2b2b;
  }
  
  @media (max-width: 980px) {
    .product-overview__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 640px) {
    .product-overview {
      padding: 70px 0 90px;
    }
  
    .product-overview__title {
      margin-bottom: 54px;
    }
  
    .product-overview__grid {
      grid-template-columns: 1fr;
      gap: 52px 0;
    }
  
    .product-card {
      min-height: auto;
      padding: 68px 22px 26px;
    }
  
    .product-card__title {
      font-size: 22px;
    }
  
    .product-card__text {
      font-size: 16px;
    }
  }
  
  /* PRICING HERO */
  .wp-hero {
    position: relative;
    width: 100%;
    padding: 80px 40px 160px;
    overflow: hidden;
  }
  
  .wp-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(to right, #ff69336c 1px, transparent 1px),
      linear-gradient(to bottom, #ff69336c 1px, transparent 1px);
    background-size: 20px 30px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, #000 60%, transparent 100%);
  }
  
  .wp-hero__inner {
    position: relative;
    z-index: 2;
    width: min(960px, 92vw);
    margin: 0 auto;
    text-align: center;
  }
  
  .wp-hero__title {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111;
  }
  
  .wp-hero__accent {
    display: inline-block;
    color: var(--primary);
  }
  
  .wp-hero__text {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
  }
  
  .wp-hero__cta {
    margin-top: 28px;
  }
  
  .wp-hero__visual {
    position: relative;
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  
  .wp-hero__wheel img {
    width: 280px;
  }
  
  .wp-hero__hand img {
    width: 520px;
    position: absolute;
    left: -80px;
    top: 40px;
  }
  
  .wp-hero__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--background));
  }
  
  /* PRICING FEATURES */
  .pricing-features {
    width: 100%;
    padding: 90px 0 70px;
    background: #fff;
  }
  
  .pricing-features__inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
  }
  
  .pricing-features__header {
    text-align: center;
    margin-bottom: 56px;
  }
  
  .pricing-features__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    color: var(--foreground);
  }
  
  .pricing-features__accent {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 900;
  }
  
  .pricing-features__sub {
    margin: 18px auto 0;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.62);
  }
  
  .pricing-features__cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .feature-card__frame {
    position: relative;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    min-height: 450px;
  }
  
  .feature-card__frameImg {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .feature-card__screen {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card__screenImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .feature-card__screenImg--round {
    width: 130px;
    height: 130px;
    border-radius: 999px;
    object-fit: cover;
  }
  
  .feature-card__check {
    position: absolute;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 72px;
    line-height: 1;
  }
  
  .feature-card__content {
    margin-top: 6px;
  }
  
  .feature-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .feature-card__title {
    margin: 14px 0 0;
    font-size: 28px;
    line-height: 1.06;
    font-weight: 900;
    color: #1b2748;
    letter-spacing: -0.02em;
  }
  
  .feature-card__desc {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.62);
  }
  
  @media (max-width: 980px) {
    .pricing-features__cards {
      grid-template-columns: 1fr;
      gap: 26px;
    }
  
    .feature-card {
      max-width: 360px;
    }
  }
  
  /* INDUSTRY PRICING TABLE */
  .pricing-table-section {
    width: 100%;
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #fe621d 0%, #ff8a4a 100%);
  }
  
  .pricing-table-container {
    width: min(1120px, 92vw);
    margin: 0 auto;
  }
  
  .pricing-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 6px;
    overflow: hidden;
  }
  
  .pricing-tab {
    height: 58px;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.65);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .pricing-tab strong {
    font-weight: 800;
  }
  
  .pricing-tab.is-active {
    background: #3c3c3c;
    color: #fff;
  }
  
  .pricing-table-subtitle {
    margin: 20px 0 44px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .pricing-table-intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.7;
  }
  
  .pricing-panels {
    margin-top: 22px;
  }
  
  .pricing-panel {
    display: none;
  }
  
  .pricing-panel.is-active {
    display: block;
  }
  
  .pricing-table-copy {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
  }
  
  .pricing-table-copy__title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.15;
    font-weight: 900;
  }
  
  .pricing-table-copy__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
  }
  
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
  }
  
  .pricing-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #fff;
  }
  
  .pricing-table thead th {
    background: #363636;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 18px 16px;
    text-align: left;
    white-space: nowrap;
  }
  
  .pricing-table thead th.price-col {
    text-align: right;
  }
  
  .pricing-table thead th:nth-child(5),
  .pricing-table tbody td:nth-child(5) {
    text-align: center;
  }
  
  .pricing-table tbody td {
    padding: 24px 16px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
  }
  
  .pricing-table tbody tr:last-child td {
    border-bottom: 0;
  }
  
  .price-cell {
    text-align: right;
    white-space: nowrap;
  }
  
  .price-cell,
  .price-cell a {
    font-size: 28px !important;
    font-weight: 800;
    color: #363636 !important;
  }
  
  .price-cell .pricing-row-link {
    justify-content: flex-end;
  }
  
  .price-max {
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    margin-left: 6px;
    vertical-align: super;
    text-transform: lowercase;
  }
  
  .dp-check {
    color: #1db954;
    font-size: 20px;
  }

  .dp-times {
    color: #d11313;
    font-size: 20px;
  }
  
  .pricing-row-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
  }
  
  .pricing-table tbody td:nth-child(5) .pricing-row-link {
    justify-content: center;
  }
  
  .pricing-row:hover {
    background: rgba(254, 98, 29, 0.03);
  }
  
  .row-hidden {
    display: none;
  }
  
  .row-visible {
    display: table-row;
  }
  
  .pricing-table-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .pricing-table-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
    padding: 0 28px;
    background: #fe621d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s ease;
  }
  
  .pricing-table-button:hover {
    background: #e55313;
    transform: translateY(-1px);
  }
  
  @media (max-width: 900px) {
    .pricing-table-section {
      padding: 70px 0 90px;
    }
  
    .pricing-table-subtitle {
      margin: 18px 0 26px;
      font-size: 15px;
      line-height: 1.6;
    }
  
    .pricing-table thead th {
      font-size: 12px;
      padding: 14px 12px;
    }
  
    .pricing-table tbody td {
      font-size: 15px;
      padding: 18px 12px;
    }
  
    .price-cell,
    .price-cell a {
      font-size: 22px !important;
    }
  
    .pricing-table-button {
      min-width: 140px;
      height: 52px;
      font-size: 16px;
    }
  }
  
  /* MOBILE: ROWS TO CARDS */
  @media (max-width: 768px) {
    .pricing-tabs {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      background: transparent;
      border-radius: 0;
    }
  
    .pricing-tab {
      height: 48px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.92);
      font-size: 15px;
      padding: 0 10px;
    }
  
    .pricing-tab.is-active {
      background: #fe621d;
      color: #fff;
    }
  
    .pricing-table {
      min-width: 100%;
      background: transparent;
    }
  
    .pricing-table thead {
      display: none;
    }
  
    .pricing-table tbody {
      display: grid;
      gap: 16px;
    }
  
    .pricing-table tbody tr.row-visible {
      display: block;
    }
  
    .pricing-table tbody tr.row-hidden {
      display: none;
    }
  
    .pricing-table tbody tr {
      background: #fff;
      border-radius: 10px;
      padding: 18px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    }
  
    .pricing-table tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      font-size: 15px;
      border: none;
    }
  
    .pricing-table tbody td::before {
      content: attr(data-label);
      font-weight: 700;
      color: #666;
      margin-right: 14px;
      flex: 0 0 auto;
    }
  
    .pricing-table tbody td:nth-child(5) {
      justify-content: space-between;
      text-align: right;
    }
  
    .pricing-table tbody td:nth-child(5) .pricing-row-link,
    .pricing-row-link {
      justify-content: flex-end;
      text-align: right;
    }
  }
  
  @media (max-width: 520px) {
    .pricing-tabs {
      grid-template-columns: 1fr;
    }
  
    .pricing-table-container {
      width: min(94vw, 1120px);
    }
  }
  
  /* FOOTER */
  .site-footer {
    position: relative;
    padding: 0 0 28px;
    background:
      radial-gradient(900px 300px at 50% 0%, rgba(254, 98, 29, 0.14), transparent 60%),
      linear-gradient(180deg, #0f1117 0%, #0b0d12 100%);
    color: rgba(255, 255, 255, 0.84);
    overflow: hidden;
  }
  
  .footer-shell {
    width: min(1180px, 94vw);
    margin: 0 auto;
    position: relative;
  }
  
  .footer-ctaCard {
    transform: translateY(-56px);
    border-radius: 32px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 28px;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
      linear-gradient(135deg, rgba(254, 98, 29, 0.18), rgba(254, 98, 29, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 28px 90px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  
  .footer-kicker {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .footer-ctaTitle {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
  }
  
  .footer-ctaAccent {
    color: #ff9a63;
  }
  
  .footer-ctaText {
    margin: 16px 0 0;
    max-width: 58ch;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
  }
  
  .footer-ctaActions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: center;
  }
  
  .footer-primaryBtn,
  .footer-secondaryBtn {
    min-width: 220px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    transition:
      transform 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }
  
  .footer-primaryBtn {
    background: #fe621d;
    color: #fff;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(254, 98, 29, 0.28);
  }
  
  .footer-primaryBtn:hover {
    transform: translateY(-2px);
    background: #e55313;
  }
  
  .footer-btnIcon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
  }
  
  .footer-secondaryBtn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
  }
  
  .footer-secondaryBtn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
  }
  
  .footer-main {
    margin-top: -8px;
    padding: 12px 0 34px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
  }
  
  .footer-brandLogo {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(1.08);
  }
  
  .footer-brandText {
    margin: 18px 0 0;
    max-width: 40ch;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.66);
  }
  
  .footer-trustRow {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .footer-trustPill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
  }
  
  .footer-linksGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }
  
  .footer-colTitle {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a,
  .footer-contactList li {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .footer-socials {
    margin-top: 18px;
    display: flex;
    gap: 10px;
  }
  
  .footer-social {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  
  .footer-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
  }
  
  .footer-bottomBar {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
  }
  
  .footer-bottomLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  
  .footer-bottomLinks a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.56);
  }
  
  .footer-bottomLinks a:hover {
    color: #fff;
  }
  
  @media (max-width: 980px) {
    .footer-ctaCard {
      grid-template-columns: 1fr;
      transform: translateY(-42px);
    }
  
    .footer-main {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .footer-linksGrid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .footer-bottomBar {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 640px) {
    .site-footer {
      margin-top: 90px;
    }
  
    .footer-ctaCard {
      padding: 24px 18px;
      border-radius: 24px;
    }
  
    .footer-ctaActions {
      align-items: stretch;
    }
  
    .footer-primaryBtn,
    .footer-secondaryBtn {
      width: 100%;
      min-width: 0;
    }
  
    .footer-linksGrid {
      grid-template-columns: 1fr;
    }
  
    .footer-brandText {
      max-width: none;
    }
  }

  .home_navbar {
    background: rgba(255, 0, 0, 0.08) !important;
  }


  .home_navDropdown {
    position: relative;
  }
  
  .home_navDropdownToggle {
    border: 0;
    background: transparent;
    font-family: inherit;
  }
  
  .home_navDropdownIcon {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  
  .home_navDropdownMenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 6000;
    pointer-events: none;
  }
  
  .home_navDropdown:hover .home_navDropdownMenu,
  .home_navDropdown:focus-within .home_navDropdownMenu,
  .home_navDropdown.is_open .home_navDropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .home_navDropdown:hover .home_navDropdownIcon,
  .home_navDropdown:focus-within .home_navDropdownIcon,
  .home_navDropdown.is_open .home_navDropdownIcon {
    transform: rotate(180deg);
  }
  
  .home_navDropdownLink {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.78);
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .home_navDropdownLink:hover {
    background: rgba(254, 98, 29, 0.08);
    color: #000;
  }

  .home_navPillWrap {
    position: relative;
    display: inline-block;
    z-index: 6000;
  }
  
  .home_navDropdown {
    position: relative;
  }
  
  .home_navDropdownMenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 7000;
    pointer-events: none;
  }
  
  .home_navDropdown:hover .home_navDropdownMenu,
  .home_navDropdown:focus-within .home_navDropdownMenu,
  .home_navDropdown.is_open .home_navDropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }