/* Responsibility: home page sections and home-specific visual refinements. */

/* ===== 05. PAGE SECTIONS / HOME ===== */
      /* ----- 05A. Home Hero ----- */
      .hero {
        min-height: 100vh;
        padding-top: var(--nav-h);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 72px;
        padding-left: 48px;
        padding-right: 48px;
        position: relative;
        overflow: hidden;
      }
      .hero-grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(200, 255, 0, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(200, 255, 0, 0.04) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(
          ellipse 80% 60% at 50% 50%,
          black,
          transparent
        );
      }
      .hero-orb {
        position: absolute;
        top: -180px;
        right: -140px;
        width: 620px;
        height: 620px;
        background: radial-gradient(
          circle,
          rgba(200, 255, 0, 0.07) 0%,
          transparent 70%
        );
        animation: orb-pulse 6s ease-in-out infinite alternate;
        pointer-events: none;
      }
      .hero-orb2 {
        position: absolute;
        bottom: -80px;
        left: 15%;
        width: 360px;
        height: 360px;
        background: radial-gradient(
          circle,
          rgba(0, 229, 255, 0.05) 0%,
          transparent 70%
        );
        animation: orb-pulse 9s ease-in-out infinite alternate-reverse;
        pointer-events: none;
      }
      .hero-eyebrow {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--lime);
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        opacity: 0;
        animation: fade-up 0.7s 0.2s forwards;
      }
      .hero-title {
        font-family: var(--font-display);
        font-size: clamp(64px, 11vw, 185px);
        line-height: 0.9;
        letter-spacing: -2px;
        position: relative;
        z-index: 2;
        opacity: 0;
        animation: fade-up 0.7s 0.38s forwards;
      }
      .hero-title .outline {
        -webkit-text-stroke: 1px rgba(242, 244, 240, 0.22);
        color: transparent;
        display: block;
      }
      .hero-title .accent {
        color: var(--lime);
        display: block;
      }
      .hero-bottom {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-top: 44px;
        position: relative;
        z-index: 2;
        opacity: 0;
        animation: fade-up 0.7s 0.56s forwards;
      }
      .hero-desc {
        max-width: 400px;
        font-size: 15px;
        color: var(--muted);
        line-height: 1.75;
      }
      .hero-actions {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
        flex-wrap: wrap;
      }
      .hero-scroll {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 2px;
        color: var(--muted);
        text-transform: uppercase;
        opacity: 0;
        animation: fade-up 0.7s 1s forwards;
        z-index: 2;
      }
      .scroll-line {
        width: 1px;
        height: 44px;
        background: linear-gradient(to bottom, var(--lime), transparent);
        animation: scroll-line 2s ease-in-out infinite;
      }

      /* ----- 05B. Home Mission ----- */
      .mission-section {
        padding: 100px 48px;
        background: var(--off-black);
        border-top: 1px solid var(--border);
      }
      .mission-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: start;
      }
      .mission-statement {
        font-size: clamp(16px, 2vw, 24px);
        line-height: 1.6;
        font-weight: 300;
        border-left: 2px solid var(--lime);
        padding-left: 28px;
      }
      .mission-statement strong {
        color: var(--lime);
        font-weight: 500;
      }
      .mission-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
      }
      .stat-card {
        background: var(--dark);
        border: 1px solid var(--border);
        padding: 28px;
        position: relative;
        overflow: hidden;
      }
      .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--lime);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
      }
      .stat-card:hover::before {
        transform: scaleX(1);
      }
      .stat-num {
        font-family: var(--font-display);
        font-size: 50px;
        color: var(--lime);
        line-height: 1;
        margin-bottom: 6px;
      }
      .stat-desc {
        font-size: 12px;
        color: var(--muted);
      }

      /* ----- 05C. Home Services ----- */
      .services-section {
        padding: 100px 48px;
      }
      .services-inner {
        max-width: 1400px;
        margin: 0 auto;
      }
      .services-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 52px;
        flex-wrap: wrap;
        gap: 20px;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
      }
      .svc-card {
        background: var(--panel);
        border: 1px solid var(--border);
        padding: 36px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s;
      }
      .svc-card:hover {
        border-color: rgba(200, 255, 0, 0.3);
      }
      .svc-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--lime-dim);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
      }
      .svc-card:hover::after {
        opacity: 1;
      }
      .svc-inner {
        position: relative;
        z-index: 1;
      }
      .svc-head {
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        gap: 14px;
        margin-bottom: 12px;
      }

      .svc-head .svc-name {
        margin-bottom: 0;
      }

      .svc-head .svc-icon {
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .svc-num {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--lime);
        margin-bottom: 20px;
      }
      .svc-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 18px;
      }
      .svc-name {
        font-family: var(--font-display);
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        line-height: 1;
      }
      .svc-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
      }
      .svc-price {
        margin-top: 20px;
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--lime);
        padding-top: 16px;
        border-top: 1px solid var(--border);
      }
      .svc-card.featured {
        background: var(--lime);
        border-color: var(--lime);
      }
      .svc-card.featured::after {
        background: rgba(0, 0, 0, 0.08);
      }
      .svc-card.featured .svc-num,
      .svc-card.featured .svc-name {
        color: var(--black);
      }
      .svc-card.featured .svc-desc {
        color: rgba(0, 0, 0, 0.6);
      }
      .svc-card.featured .svc-price {
        color: var(--black);
        border-color: rgba(0, 0, 0, 0.15);
      }
      .svc-card.featured .svc-icon {
        color: var(--black);
      }

      /* ----- 05D. Home Industries ----- */
      .industries-section {
        padding: 100px 48px;
        background: var(--off-black);
      }
      .industries-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
      }
      .ind-card {
        background: var(--dark);
        border: 1px solid var(--border);
        padding: 30px 26px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s;
        cursor: pointer;
      }
      .ind-card:hover {
        border-color: rgba(200, 255, 0, 0.4);
      }
      .ind-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--lime);
        transform: scaleX(0);
        transition: transform 0.3s;
      }
      .ind-card:hover::before {
        transform: scaleX(1);
      }
      .ind-emoji {
        font-size: 26px;
        margin-bottom: 14px;
        display: block;
      }
      .ind-name {
        font-family: var(--font-display);
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 6px;
      }
      .ind-tagline {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.6;
      }
      .ind-arrow {
        margin-top: 18px;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 1px;
        color: var(--lime);
      }

      /* ----- 05E. Home Advantages ----- */
      .adv-section {
        padding: 100px 48px;
      }
      .adv-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .adv-list {
        list-style: none;
      }
      .adv-item {
        display: grid;
        grid-template-columns: 56px 1fr 1.2fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
      }
      .adv-item:first-child {
        border-top: 1px solid var(--border);
      }
      .adv-idx {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--lime);
        letter-spacing: 1px;
        padding-top: 4px;
      }
      .adv-title {
        font-family: var(--font-display);
        font-size: clamp(24px, 3vw, 34px);
        letter-spacing: 1px;
        line-height: 1;
      }
      .adv-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.75;
      }

      /* ----- 05F. Shared CTA Band ----- */
      .cta-band {
        padding: 130px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-band-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 50% at 50% 50%,
          rgba(200, 255, 0, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .cta-band h2 {
        font-family: var(--font-display);
        font-size: clamp(44px, 7.5vw, 120px);
        line-height: 0.92;
        position: relative;
        z-index: 1;
        margin-bottom: 32px;
      }
      .cta-band h2 span {
        color: var(--lime);
        display: block;
      }
      .cta-band p {
        font-size: 15px;
        color: var(--muted);
        max-width: 480px;
        margin: 0 auto 40px;
        position: relative;
        z-index: 1;
        line-height: 1.75;
      }
      .cta-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
      }

/* ===== 07F. PRODUCTION REFINEMENT LAYER / HOME ===== */
      /* ----- 07F-1. Home Hero ----- */
      .hero {
        padding-top: calc(var(--nav-h) + 24px);
        padding-bottom: 84px;
      }
      .hero-grid {
        background-image:
          linear-gradient(rgba(200, 255, 0, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(200, 255, 0, 0.03) 1px, transparent 1px);
        background-size: 88px 88px;
      }
      .hero-orb {
        top: -170px;
        right: -110px;
        width: 580px;
        height: 580px;
        background: radial-gradient(
          circle,
          rgba(200, 255, 0, 0.08) 0%,
          transparent 70%
        );
        animation-duration: 7s;
        filter: blur(6px);
      }
      .hero-orb2 {
        bottom: -70px;
        width: 340px;
        height: 340px;
        filter: blur(12px);
      }
      .hero-content {
        position: relative;
        z-index: 2;
        width: min(100%, 1520px);
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
      }
      .hero-content::before {
        display: none;
      }
      .hero-eyebrow {
        position: relative;
        z-index: 1;
        font-size: 11px;
        letter-spacing: 2.4px;
        margin-bottom: 20px;
      }
      .hero-title {
        position: relative;
        z-index: 1;
        max-width: 1040px;
        font-size: clamp(72px, 11vw, 188px);
        line-height: 0.88;
        letter-spacing: -1.8px;
        text-wrap: balance;
      }
      .hero-bottom {
        display: grid;
        grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
        gap: 40px;
        align-items: end;
        margin-top: 38px;
      }
      .hero-desc {
        max-width: 720px;
        font-size: 19px;
        line-height: 1.84;
        color: var(--text-secondary);
      }
      .hero-actions-wrap {
        display: grid;
        gap: 14px;
        justify-items: start;
        align-self: end;
      }
      .hero-actions {
        gap: 12px;
      }
      .hero-action-note {
        max-width: 340px;
        font-size: 13px;
        line-height: 1.6;
        color: var(--text-soft);
      }
      .hero-trust {
        position: relative;
        z-index: 1;
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        animation: fade-up 0.7s 0.64s forwards;
      }
      .hero-trust-item {
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        flex: 0 1 250px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 6px;
      }
      .hero-trust-value {
        font-family: var(--font-display);
        font-size: 20px;
        line-height: 1;
        color: var(--lime);
        letter-spacing: 0.5px;
      }
      .hero-trust-label {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text-soft);
      }
      .hero-scroll {
        bottom: 22px;
        gap: 8px;
        font-size: 10px;
        color: var(--text-soft);
      }
      .scroll-line {
        height: 40px;
        background: linear-gradient(
          to bottom,
          rgba(200, 255, 0, 0.86),
          transparent
        );
      }

      /* ----- 07F-2. Home Mission ----- */
      .mission-section,
      .industries-section,
      .faq-section {
        background: linear-gradient(
          180deg,
          rgba(15, 17, 21, 0.96) 0%,
          rgba(10, 12, 16, 0.98) 100%
        );
      }
      .mission-section,
      .services-section,
      .industries-section,
      .adv-section,
      .cta-band {
        padding-top: 104px;
        padding-bottom: 104px;
      }
      .mission-inner,
      .industries-inner,
      .adv-inner {
        max-width: var(--container-xl);
      }
      .mission-inner {
        grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
        gap: 72px;
      }
      .mission-statement {
        padding: 28px 0 28px 28px;
        font-size: clamp(19px, 2.2vw, 28px);
        line-height: 1.62;
        color: var(--text-secondary);
      }
      .mission-stats {
        gap: 18px;
      }
      .stat-card {
        min-height: 170px;
        padding: 28px;
        border-color: rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-md);
        background: linear-gradient(
          180deg,
          rgba(20, 24, 32, 0.98) 0%,
          rgba(14, 17, 22, 0.98) 100%
        );
        box-shadow: var(--shadow-sm);
        transition:
          transform var(--transition-base),
          border-color var(--transition-base),
          box-shadow var(--transition-base);
      }
      .stat-card::before {
        transform: none;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--lime),
          rgba(200, 255, 0, 0.06)
        );
      }
      .stat-card::after {
        content: "";
        position: absolute;
        inset: auto -40px -60px auto;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(200, 255, 0, 0.12),
          transparent 70%
        );
        opacity: 0;
        transition: opacity var(--transition-base);
      }
      .stat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 255, 0, 0.24);
        box-shadow: var(--shadow-md);
      }
      .stat-card:hover::after {
        opacity: 1;
      }
      .stat-num {
        font-size: clamp(54px, 5vw, 76px);
        line-height: 0.9;
        margin-bottom: 14px;
      }
      .stat-desc {
        max-width: 18ch;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-muted);
      }

      /* ----- 07F-3. Home Services ----- */
      .services-inner {
        max-width: var(--container-xl);
      }
      .services-head {
        margin-bottom: 52px;
        gap: 24px;
      }
      .services-copy,
      .industries-copy,
      .adv-copy {
        display: grid;
        gap: 16px;
      }
      .services-grid,
      .industries-grid {
        gap: 18px;
      }
      .svc-card,
      .ind-card {
        border-radius: var(--radius-md);
        border-color: rgba(255, 255, 255, 0.08);
      }
      .svc-card {
        box-shadow: var(--shadow-sm);
        background: linear-gradient(
          180deg,
          rgba(26, 31, 40, 0.96) 0%,
          rgba(15, 17, 21, 0.98) 100%
        );
        transition:
          transform var(--transition-base),
          border-color var(--transition-base),
          box-shadow var(--transition-base),
          background var(--transition-base);
      }
      .svc-card::after {
        display: none;
      }
      .svc-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(200, 255, 0, 0.06),
          transparent 40%,
          rgba(0, 229, 255, 0.04)
        );
        opacity: 0.65;
        pointer-events: none;
      }
      .svc-card:hover {
        transform: translateY(-5px);
        border-color: rgba(200, 255, 0, 0.26);
        box-shadow: var(--shadow-md);
      }
      .svc-inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 34px;
      }
      .svc-num {
        font-size: 11px;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .svc-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 22px;
        padding: 11px;
        border-radius: 16px;
        background: rgba(200, 255, 0, 0.08);
        border: 1px solid rgba(200, 255, 0, 0.16);
      }
      .svc-name {
        font-size: 34px;
        line-height: 0.94;
        margin-bottom: 14px;
      }
      .svc-desc {
        font-size: 15px;
        line-height: 1.78;
        color: var(--text-muted);
      }
      .svc-price {
        margin-top: auto;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 11px;
      }
      .svc-price-main {
        font-family: var(--font-mono);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--lime);
      }
      .svc-price-note {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text-soft);
      }
      .svc-card.featured {
        background: linear-gradient(180deg, #d3ff33 0%, #bde700 100%);
        border-color: rgba(200, 255, 0, 0.8);
        box-shadow: 0 30px 90px rgba(200, 255, 0, 0.16);
      }
      .svc-card.featured::before {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.18),
          transparent 45%,
          rgba(0, 0, 0, 0.05)
        );
        opacity: 1;
      }
      .svc-card.featured .svc-num,
      .svc-card.featured .svc-name,
      .svc-card.featured .svc-price-main {
        color: var(--black);
      }
      .svc-card.featured .svc-desc,
      .svc-card.featured .svc-price-note {
        color: rgba(8, 10, 12, 0.68);
      }
      .svc-card.featured .svc-price {
        border-color: rgba(8, 10, 12, 0.16);
      }

      /* ----- 07F-4. Home Industries ----- */
      .industries-copy {
        margin-bottom: 48px;
        max-width: 620px;
      }
      .industries-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .ind-card {
        min-height: 240px;
        padding: 24px;
        box-shadow: var(--shadow-sm);
        background: linear-gradient(
          180deg,
          rgba(20, 24, 32, 0.98) 0%,
          rgba(14, 17, 22, 0.98) 100%
        );
        transition:
          transform var(--transition-base),
          border-color var(--transition-base),
          box-shadow var(--transition-base),
          background var(--transition-base);
        display: flex;
        flex-direction: column;
      }
      .ind-card::before {
        inset: 0;
        height: auto;
        transform: none;
        background: linear-gradient(
          135deg,
          rgba(200, 255, 0, 0.08),
          transparent 45%,
          rgba(0, 229, 255, 0.03)
        );
        opacity: 0.6;
        pointer-events: none;
      }
      .ind-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 255, 0, 0.26);
        box-shadow: var(--shadow-md);
      }
      .ind-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 18px;
      }
      .ind-emoji {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        font-size: 19px;
        background: rgba(200, 255, 0, 0.08);
        border: 1px solid rgba(200, 255, 0, 0.16);
        margin-bottom: 0;
      }
      .ind-kicker {
        padding: 7px 10px;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        color: var(--text-soft);
      }
      .ind-name {
        font-size: 28px;
        line-height: 0.95;
        margin-bottom: 10px;
      }
      .ind-tagline {
        font-size: 14px;
        line-height: 1.72;
        color: var(--text-muted);
      }
      .ind-arrow {
        margin-top: auto;
        padding-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 11px;
        letter-spacing: 1.3px;
        text-transform: uppercase;
      }

      /* ----- 07F-5. Home Advantages ----- */
      .adv-copy {
        margin-bottom: 36px;
        max-width: 620px;
      }
      .adv-item {
        grid-template-columns: 64px minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 30px;
        padding: 32px 0;
        border-color: rgba(255, 255, 255, 0.08);
      }
      .adv-idx {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding-top: 6px;
      }
      .adv-title {
        font-size: clamp(30px, 3vw, 42px);
        line-height: 0.94;
      }
      .adv-desc {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-muted);
        max-width: 46ch;
      }

      /* ----- 07F-6. Shared CTA Band ----- */
      .cta-band {
        position: relative;
        overflow: hidden;
        text-align: center;
        padding-top: 128px;
        padding-bottom: 128px;
      }
      .cta-band::before {
        display: none;
      }
      .cta-band-bg {
        background: radial-gradient(
          ellipse 60% 50% at 50% 50%,
          rgba(200, 255, 0, 0.08) 0%,
          transparent 72%
        );
      }
      .cta-band > * {
        position: relative;
        z-index: 1;
      }
      .cta-kicker {
        margin: 0 auto 18px;
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        color: var(--lime);
      }
      .cta-band h2 {
        max-width: 860px;
        margin: 0 auto 22px;
        font-size: clamp(50px, 7.5vw, 124px);
        line-height: 0.92;
        text-wrap: balance;
      }
      .cta-band p {
        max-width: 660px;
        margin: 0 auto 34px;
        font-size: 18px;
        line-height: 1.82;
        color: var(--text-secondary);
      }
