      :root {
        --bg: #eef7fc;
        --bg-soft: #e5f2fa;
        --card: #ffffff;
        --text: #16324a;
        --muted: #60788b;
        --line: #c9dfed;
        --primary: #168bd1;
        --primary-strong: #17618f;
        --accent: #168bd1;
        --accent-soft: #e3f4ff;
        --shadow: 0 14px 32px rgba(24, 78, 111, 0.09);
        --radius: 24px;
        --duration: 220ms;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        color: var(--text);
        line-height: 1.65;
        background: var(--bg);
      }

      .home-page {
        padding-top: 0;
      }

      /* Keep the desktop header in normal flow so it cannot cover scrolled content. */
      @media (min-width: 761px) {
        .home-page .public-header {
          position: relative;
          top: auto;
          left: auto;
          width: min(1200px, calc(100% - 64px));
          margin: 0 auto;
          padding-top: 14px;
          transform: none;
        }

        .home-page .hero {
          padding-top: 42px;
        }
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      a:focus-visible,
      button:focus-visible,
      summary:focus-visible {
        outline: 3px solid rgba(22, 139, 209, 0.3);
        outline-offset: 3px;
        border-radius: 14px;
      }

      img {
        max-width: 100%;
        display: block;
      }

      .container {
        width: min(1200px, calc(100% - 64px));
        margin: 0 auto;
      }

      .hero-title-top {
        display: inline-flex;
        align-items: baseline;
        gap: 14px;
        flex-wrap: wrap;
      }

      .hero-title-note {
        color: var(--muted);
        font-size: clamp(16px, 1.6vw, 24px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0;
      }

      .hero-title-main {
        display: block;
        margin-top: 6px;
        font-size: clamp(23px, 3.35vw, 40px);
        line-height: 1.06;
      }

      .hero-title-shine {
        position: relative;
        display: inline-block;
        color: var(--text);
      }

      .hero-title-shine::after {
        content: attr(data-text);
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(22, 50, 74, 0) 0%, rgba(22, 50, 74, 0) 28%, rgba(255, 255, 255, 0.3) 42%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.3) 58%, rgba(22, 50, 74, 0) 72%, rgba(22, 50, 74, 0) 100%) 0 0 / 320% 100% no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        pointer-events: none;
        animation: heroTitleSweep 4.1s linear infinite;
      }

      @keyframes heroTitleSweep {
        from {
          background-position: 140% 0;
        }

        to {
          background-position: -140% 0;
        }
      }

      .btn {
        min-height: 46px;
        padding: 11px 18px;
        border-radius: 14px;
        border: 1px solid transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: transform var(--duration) ease, box-shadow var(--duration) ease, background-color var(--duration) ease;
      }

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

      .btn-primary {
        color: #fff;
        background: var(--primary-strong);
        box-shadow: 0 10px 22px rgba(22, 139, 209, 0.22);
      }

      .btn-secondary {
        color: var(--text);
        border-color: var(--line);
        background: #fff;
      }

      main {
        padding-bottom: 72px;
      }

      section {
        padding: 72px 0 0;
      }

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

      h1 {
        font-size: clamp(38px, 5vw, 64px);
        line-height: 1.05;
        letter-spacing: -0.03em;
      }

      h2 {
        font-size: clamp(30px, 3.5vw, 44px);
        line-height: 1.12;
        letter-spacing: -0.02em;
      }

      h3 {
        font-size: 22px;
        line-height: 1.24;
      }

      .muted {
        color: var(--muted);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 6px 12px;
        border-radius: 999px;
        color: var(--primary-strong);
        background: var(--accent-soft);
        border: 1px solid #bcdced;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(380px, 500px);
        gap: 28px;
        align-items: start;
      }

      .hero-copy {
        max-width: 620px;
      }

      .hero-copy h1 {
        margin-top: 18px;
      }

      .hero-copy p {
        margin-top: 18px;
        font-size: 18px;
      }

      .hero-actions {
        margin-top: 28px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .trust-row {
        margin-top: 28px;
      }

      .trust-row strong {
        display: block;
        font-size: 15px;
      }

      .trust-logos {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .trust-logos span {
        min-height: 40px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: #ffffff;
        color: #3f637a;
        font-size: 14px;
        font-weight: 600;
      }

      .hero-panel,
      .card,
      .banner,
      details {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--card);
        box-shadow: var(--shadow);
      }

      .hero-panel {
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
      }

      .hero-stage {
        min-height: 460px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        perspective: 1200px;
        perspective-origin: 72% 32%;
      }

      .hero-surface {
        width: min(100%, 506px);
        padding: 18px 24px 14px;
        min-height: 0;
        border: 1px solid var(--line);
        border-radius: 22px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 14px 26px rgba(24, 78, 111, 0.09);
        transform: rotateZ(2.4deg) rotateY(-9deg) rotateX(2deg);
        transform-origin: right top;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        will-change: transform;
        transition: transform 220ms ease, box-shadow 220ms ease;
      }

      .hero-surface::before {
        content: none;
      }

      .hero-surface::after {
        content: none;
      }

      .hero-surface > * {
        position: relative;
        z-index: 1;
      }

      .hero-surface:hover {
        transform: rotateZ(0deg) rotateY(0deg) rotateX(0deg) translateY(-1px);
        border-color: #66b7e4;
        box-shadow: 0 16px 28px rgba(24, 78, 111, 0.11), 0 0 0 1px rgba(22, 139, 209, 0.14);
      }

      .panel-kicker {
        color: #9aaab7;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
      }

      .panel-title {
        margin-top: 0;
        font-size: 24px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        min-height: 26px;
      }

      .panel-desc {
        margin-top: 8px;
        color: #8d99a3;
        font-size: 14px;
        line-height: 1.62;
        max-width: 390px;
        min-height: 0;
      }

      .hero-points {
        position: relative;
        margin-top: 10px;
        display: grid;
        gap: 2px;
      }

      .hero-points::before {
        content: none;
      }

      .hero-point {
        width: 100%;
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 2px 0;
      }

      .hero-point-badge {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
          flex: 0 0 auto;
        }

        .hero-point-badge img {
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      .hero-point-copy {
        padding-top: 1px;
      }

      .hero-point-title {
        display: block;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
      }

      .hero-point-text {
        display: block;
        margin-top: 2px;
        color: #97a3ac;
        font-size: 13px;
        line-height: 1.45;
        max-width: 300px;
      }

      .section-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
      }

      .section-head-copy {
        max-width: 700px;
      }

      .section-head-copy p {
        margin-top: 10px;
      }

      .section-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-strong);
        font-weight: 700;
      }

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

      #features {
        padding-top: 36px;
      }

      .features-head {
        margin-bottom: 28px;
        justify-content: center;
        text-align: center;
      }

      .features-head .section-head-copy {
        max-width: 760px;
        margin: 0 auto;
      }

      .features-head .section-link {
        justify-content: center;
        margin-top: 14px;
      }

      .centered-head {
        justify-content: center;
        text-align: center;
      }

      .centered-head .section-head-copy {
        max-width: 760px;
        margin: 0 auto;
      }

      .feature-3d-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .feature-card {
        position: relative;
        padding: 20px 18px 16px;
        border: 1px solid var(--line);
        border-radius: 20px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 16px 30px rgba(24, 78, 111, 0.09);
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
      }

      .feature-card::before {
        content: none;
      }

      .feature-card::after {
        content: none;
      }

      .feature-card > * {
        position: relative;
        z-index: 1;
      }

      .feature-card:hover {
        transform: translateY(-6px);
        border-color: #66b7e4;
        box-shadow: 0 22px 38px rgba(24, 78, 111, 0.13), 0 0 0 1px rgba(22, 139, 209, 0.14);
      }

      .feature-card .icon-chip {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
      }

      .feature-card:hover .icon-chip {
        transform: translateY(-2px) scale(1.04);
        border-color: #66b7e4;
        box-shadow: 0 12px 22px rgba(22, 139, 209, 0.19);
      }

      .feature-card h3 {
        font-size: 20px;
      }

      .feature-card p {
        font-size: 14px;
      }

      .feature-card small {
        display: block;
        margin-top: 8px;
        font-size: 13px;
      }

      .feature-card-media {
        display: grid;
          grid-template-columns: 72px minmax(0, 1fr);
          gap: 16px;
        align-items: center;
      }

      .feature-card-media .feature-media {
          width: 72px;
          height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
      }

      .feature-card-media .feature-media img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .feature-card-media .feature-copy h3 {
        margin-top: 0;
      }

      .feature-card-media .feature-copy p {
        margin-top: 10px;
      }

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

      .pricing-card {
        display: flex;
        flex-direction: column;
        min-height: 100%;
      }

      .pricing-card h3 {
        margin-top: 0;
      }

      .pricing-title-line {
        display: flex;
        align-items: baseline;
        gap: 10px;
        flex-wrap: wrap;
      }

      .pricing-title-note {
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2;
      }

      .pricing-card .price {
        margin-top: 14px;
      }

      .pricing-card ul {
        color: var(--muted);
      }

      .pricing-card .btn {
        margin-top: auto;
      }

      .inline-feature-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        vertical-align: middle;
      }

      .inline-feature-tag img {
        width: auto;
        height: 30px;
        display: inline-block;
      }

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

      .solution-card {
        min-height: 100%;
      }

      .solution-card h3 {
        margin-top: 0;
      }

      .solution-card p {
        margin-top: 12px;
      }

      .card {
        padding: 22px;
        transition: transform var(--duration) ease, box-shadow var(--duration) ease;
      }

      .card:not(.feature-card):hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 42px rgba(20, 80, 120, 0.14);
      }

      .icon-chip {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: var(--accent-soft);
        border: 1px solid #bcdced;
      }

      .icon-chip svg {
        width: 22px;
        height: 22px;
        stroke: var(--primary-strong);
      }

      .card h3 {
        margin-top: 14px;
      }

      .card p {
        margin-top: 10px;
      }

      .card small {
        display: block;
        margin-top: 12px;
        color: var(--primary-strong);
        font-weight: 700;
      }

      .banner {
        margin-top: 28px;
        padding: 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background: #164d73;
        color: #ffffff;
      }

      .banner-title {
        flex: 0 0 auto;
        white-space: nowrap;
      }

      .banner-rail {
        min-width: 0;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .banner-copy {
        flex: 1 1 auto;
        min-width: 0;
      }

      .banner p {
        margin-top: 0;
        max-width: none;
        color: #b8d5e8;
      }

      .banner .btn-primary {
        box-shadow: none;
      }

      .banner .btn {
        flex: 0 0 auto;
        white-space: nowrap;
      }

      .triples,
      .faq-grid,
      .footer-grid {
        display: grid;
        gap: 14px;
      }

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

      .price {
        margin-top: 12px;
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -0.03em;
      }

      .price span {
        font-size: 15px;
        color: var(--muted);
      }

      ul {
        margin: 16px 0 0;
        padding-left: 18px;
      }

      li + li {
        margin-top: 8px;
      }

      .card .btn {
        margin-top: 18px;
      }

      .faq-shell {
        display: grid;
        gap: 16px;
      }

      .faq-head {
        text-align: center;
      }

      .faq-head .section-head-copy {
        max-width: 760px;
        margin: 0 auto;
      }

      .faq-list {
        width: min(100%, 1040px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .faq-item {
        position: relative;
        overflow: hidden;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 16px 30px rgba(24, 78, 111, 0.08);
        transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
      }

      .faq-item::before {
        content: none;
      }

      .faq-item:hover {
        transform: translateY(-3px);
        border-color: #66b7e4;
        box-shadow: 0 22px 38px rgba(24, 78, 111, 0.11);
      }

      .faq-item + .faq-item {
        margin-top: 0;
      }

      .faq-item summary {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        align-items: center;
        gap: 18px;
        padding: 22px 24px;
        cursor: pointer;
        font-weight: 800;
        list-style: none;
      }

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

      .faq-item summary::after {
        content: "+";
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        color: var(--primary-strong);
        font-size: 28px;
        font-weight: 500;
        background: var(--accent-soft);
        border: 1px solid #bcdced;
        transition: transform 220ms ease, background 220ms ease, color 220ms ease;
      }

      .faq-item[open] summary::after {
        content: "−";
        transform: rotate(180deg);
        background: #d3edfc;
        color: var(--text);
      }

      .faq-item p {
        position: relative;
        z-index: 1;
        margin: 0;
        padding: 0 24px 22px;
        color: var(--muted);
        line-height: 1.75;
      }

      .usage-shell {
        display: grid;
        gap: 16px;
      }

      #usage-showcase {
        padding-top: 44px;
      }

      #faq {
        padding-top: 44px;
      }

      .usage-head {
        text-align: center;
      }

      .usage-head .section-head-copy {
        max-width: 820px;
        margin: 0 auto;
      }

      .usage-flow {
        width: min(100%, 1120px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        align-items: start;
      }

      .usage-column {
        position: relative;
        height: 500px;
        overflow: hidden;
      }

      .usage-track {
        display: grid;
        gap: 14px;
        padding-block: 12px;
        will-change: transform;
        animation: usageCurtainDown 20s linear infinite;
      }

      .usage-column:nth-child(2) .usage-track {
        animation-duration: 22s;
        animation-delay: -6s;
      }

      .usage-column:nth-child(3) .usage-track {
        animation-duration: 24s;
        animation-delay: -10s;
      }

      @keyframes usageCurtainDown {
        from {
          transform: translateY(-50%);
        }

        to {
          transform: translateY(0);
        }
      }

      .usage-card {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 12px 14px 12px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(24, 78, 111, 0.07);
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
      }

      .usage-card.compact {
        min-height: 94px;
      }

      .usage-card.medium {
        min-height: 118px;
      }

      .usage-card.tall {
        min-height: 142px;
      }

      .usage-card.x-tall {
        min-height: 156px;
      }

      .usage-card::before {
        content: none;
      }

      .usage-card > * {
        position: relative;
        z-index: 1;
      }

      .usage-card:hover {
        transform: translateY(-4px);
        border-color: #66b7e4;
        box-shadow: 0 16px 28px rgba(24, 78, 111, 0.11), 0 0 0 1px rgba(22, 139, 209, 0.14);
      }

      .usage-column:hover .usage-track {
        animation-play-state: paused;
      }

      .usage-kicker {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: 2px 8px;
        border-radius: 999px;
        color: var(--primary-strong);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.03em;
        background: var(--accent-soft);
        border: 1px solid #bcdced;
      }

      .usage-card h3 {
        margin-top: 10px;
        font-size: 18px;
        line-height: 1.18;
      }

      .usage-card p {
        margin-top: 8px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.58;
      }

      .usage-meta {
        margin-top: 10px;
        color: #6d8aa0;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.03em;
      }

      .usage-tags {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }

      .usage-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 2px 8px;
        border-radius: 999px;
        color: #57758b;
        font-size: 11px;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.68);
        border: 1px solid rgba(210, 229, 240, 0.92);
      }

      .footer-grid {
        grid-template-columns: 1.1fr 0.9fr;
      }

      footer {
        padding-top: 72px;
      }

      .footer-note {
        margin-top: 20px;
        padding: 18px 0 0;
        border-top: 1px solid var(--line);
        color: var(--muted);
        font-size: 14px;
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 1ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 1ms !important;
          scroll-behavior: auto !important;
        }

        .hero-stage {
          perspective: none;
        }

        .hero-surface,
        .hero-surface:hover {
          transform: none;
          will-change: auto;
        }

        .hero-title-shine::after {
          animation: none;
          background-position: 0 0;
        }

        .feature-card,
        .feature-card:hover {
          transform: none;
          will-change: auto;
        }

        .usage-track {
          animation: none;
          will-change: auto;
        }

        .usage-card,
        .usage-card:hover {
          transform: none;
        }
      }

      @media (max-width: 1080px) {
        .hero-grid,
        .faq-grid,
        .footer-grid,
        .triples {
          grid-template-columns: 1fr;
        }

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

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

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

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

        .usage-column {
          height: 440px;
        }

        .section-head,
        .banner {
          align-items: start;
          flex-direction: column;
        }
      }

      @media (max-width: 760px) {
        .home-page {
          padding-top: 70px;
        }

        .hero-title-top {
          gap: 8px;
        }

        .hero-title-note {
          font-size: 14px;
        }

        .hero-title-main {
          margin-top: 4px;
          font-size: clamp(19px, calc(7.2vw - 1px), 33px);
        }

        .hero {
          padding-top: 28px;
        }

        .features-grid {
          grid-template-columns: 1fr;
        }

        .pricing-grid {
          grid-template-columns: 1fr;
        }

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

        .usage-flow {
          grid-template-columns: 1fr;
        }

        .usage-column {
          height: auto;
          overflow: visible;
          mask-image: none;
          -webkit-mask-image: none;
        }

        .usage-track {
          animation: none;
        }

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

        .banner,
        .card,
        details {
          padding: 20px;
        }

        .banner {
          gap: 14px;
        }

        .banner-title {
          font-size: clamp(28px, 7vw, 38px);
        }

        .banner-rail {
          width: 100%;
          justify-content: flex-start;
          overflow-x: auto;
          overflow-y: hidden;
          white-space: nowrap;
          -ms-overflow-style: none;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
        }

        .banner-rail::-webkit-scrollbar {
          display: none;
        }

        .banner-copy,
        .banner .btn {
          flex: 0 0 auto;
        }

        .banner-copy p {
          white-space: nowrap;
        }

        .hero-stage {
          min-height: auto;
        }

        .hero-stage::before {
          inset: 0;
        }

        .hero-stage::after {
          inset: 0;
        }

        .hero-surface {
          width: 100%;
          padding: 16px 18px 12px;
          min-height: 0;
          transform: none;
        }

        .hero-surface:hover {
          transform: none;
        }

        .panel-desc {
          min-height: auto;
          font-size: 16px;
          max-width: none;
        }

        .panel-title {
          font-size: 38px;
        }

        .features-head {
          margin-bottom: 22px;
        }

        .feature-card {
          padding: 18px 16px 14px;
        }

        .feature-card-media {
           grid-template-columns: 56px minmax(0, 1fr);
           gap: 12px;
        }

        .feature-card-media .feature-media {
           width: 56px;
           height: 56px;
        }

        .feature-card:hover {
          transform: translateY(-4px);
        }

        h1 {
          font-size: clamp(34px, 10vw, 48px);
        }
      }
