:root {
      --bg: #f6f1e8;
      --paper: #fffaf1;
      --ink: #17251f;
      --muted: #64736d;
      --deep: #0e3b2e;
      --green: #0f6b4f;
      --green2: #0b513d;
      --gold: #d9a441;
      --red: #c6513b;
      --blue: #345c7c;
      --line: rgba(23,37,31,.14);
      --shadow: 0 24px 70px rgba(17, 37, 29, .14);
      --softshadow: 0 14px 38px rgba(17, 37, 29, .10);
      --radius: 28px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 4%, rgba(217,164,65,.22), transparent 31%),
        radial-gradient(circle at 90% 7%, rgba(15,107,79,.16), transparent 32%),
        linear-gradient(180deg, #fbf7ef 0%, var(--bg) 55%, #efe7d8 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(23,37,31,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,37,31,.035) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 80%);
      z-index: 0;
    }

    .grain {
      position: fixed;
      inset: 0;
      opacity: .18;
      pointer-events: none;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    }

    a { color: inherit; text-decoration: none; }

    .page {
      position: relative;
      z-index: 1;
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      margin: 24px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 14px 12px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,250,241,.72);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 40px rgba(23,37,31,.08);
      position: sticky;
      top: 16px;
      z-index: 20;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      font-weight: 850;
      letter-spacing: -.04em;
      font-size: 1.22rem;
      color: var(--deep);
    }

    .logo {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, #f7df9f, #fff3cd 48%, #0f6b4f 49%, #0e3b2e);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 10px 24px rgba(15,107,79,.18);
      position: relative;
    }

    .logo::before {
      content: "";
      width: 18px;
      height: 13px;
      border: 2px solid #fffaf1;
      border-top: none;
      border-radius: 0 0 5px 5px;
      position: absolute;
      bottom: 11px;
      right: 9px;
    }

    .logo::after {
      content: "";
      width: 18px;
      height: 12px;
      border: 2px solid #0e3b2e;
      border-bottom: none;
      border-radius: 5px 5px 0 0;
      position: absolute;
      top: 10px;
      left: 8px;
      transform: rotate(-7deg);
    }

    .navlinks {
      display: flex;
      gap: 22px;
      align-items: center;
      color: var(--muted);
      font-size: .95rem;
      font-weight: 650;
    }

    .navlinks a:hover { color: var(--deep); }

    .btn {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 14px 21px;
      font-weight: 800;
      letter-spacing: -.02em;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--deep), var(--green));
      color: #fffaf1;
      box-shadow: 0 18px 38px rgba(15,107,79,.24);
    }

    .btn-secondary {
      background: rgba(255,250,241,.88);
      border: 1px solid var(--line);
      color: var(--deep);
      box-shadow: var(--softshadow);
    }

    .btn-gold {
      background: linear-gradient(135deg, #f7d27a, var(--gold));
      color: #2e2208;
      box-shadow: 0 18px 38px rgba(217,164,65,.28);
    }

    .hero {
      width: min(1180px, calc(100% - 40px));
      margin: 58px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      align-items: start;
      gap: 46px;
      min-height: auto;
      overflow: visible;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border: 1px solid rgba(15,107,79,.2);
      border-radius: 999px;
      background: rgba(255,250,241,.72);
      color: var(--green2);
      font-weight: 800;
      font-size: .92rem;
      margin-bottom: 24px;
      box-shadow: 0 12px 26px rgba(15,107,79,.06);
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #16a36b;
      box-shadow: 0 0 0 7px rgba(22,163,107,.13);
    }

    h1 {
      font-size: clamp(3.4rem, 7vw, 7.55rem);
      line-height: .88;
      letter-spacing: -.08em;
      margin: 0;
      color: var(--deep);
    }

    h1 .gold {
      color: transparent;
      background: linear-gradient(135deg, #b17919, #e7b64c 48%, #7e5311);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .lead {
      max-width: 650px;
      font-size: clamp(1.15rem, 2vw, 1.5rem);
      line-height: 1.5;
      color: #415149;
      margin: 28px 0 0;
      letter-spacing: -.025em;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      margin-top: 30px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,250,241,.70);
      color: var(--muted);
      font-weight: 700;
      font-size: .9rem;
    }

    .visual {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
      overflow: visible;
      isolation: isolate;
    }

    .halo {
      position: absolute;
      width: min(500px, 92vw);
      height: min(500px, 92vw);
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(217,164,65,.25), transparent 56%),
        radial-gradient(circle at 68% 32%, rgba(15,107,79,.20), transparent 34%);
      filter: blur(3px);
      animation: breathe 5.5s ease-in-out infinite;
    }

    @keyframes breathe {
      0%, 100% { transform: scale(.98); opacity: .76; }
      50% { transform: scale(1.04); opacity: 1; }
    }

    .mail-card {
      position: relative;
      z-index: 2;
      width: min(420px, 100%);
      min-height: 500px;
      border-radius: 42px;
      background:
        linear-gradient(180deg, rgba(255,250,241,.96), rgba(255,250,241,.84)),
        linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,0));
      border: 1px solid rgba(23,37,31,.13);
      box-shadow: var(--shadow);
      padding: 28px;
      overflow: hidden;
    }

    .mail-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        radial-gradient(circle at 20% 6%, rgba(217,164,65,.18), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(15,107,79,.18), transparent 35%);
      pointer-events: none;
    }

    .mail-top {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .stamp {
      width: 82px;
      height: 82px;
      border-radius: 26px;
      border: 2px dashed rgba(15,107,79,.34);
      background: rgba(15,107,79,.07);
      display: grid;
      place-items: center;
      color: var(--deep);
      font-weight: 900;
      transform: rotate(7deg);
    }

    .verified {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(15,107,79,.09);
      color: var(--green2);
      border: 1px solid rgba(15,107,79,.16);
      border-radius: 999px;
      padding: 8px 11px;
      font-size: .84rem;
      font-weight: 850;
    }

    .address-box {
      position: relative;
      margin-top: 44px;
      padding: 26px;
      border-radius: 30px;
      background: #102d25;
      color: #fffaf1;
      box-shadow: 0 20px 50px rgba(16,45,37,.28);
      overflow: hidden;
    }

    .address-box::before {
      content: "";
      position: absolute;
      inset: auto -40px -70px auto;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(217,164,65,.24);
    }

    .address-label {
      color: rgba(255,250,241,.66);
      font-weight: 700;
      font-size: .86rem;
      margin-bottom: 11px;
    }

    .address {
      font-size: clamp(1.35rem, 3vw, 1.8rem);
      font-weight: 900;
      letter-spacing: -.05em;
    }

    .copyline {
      margin-top: 14px;
      color: rgba(255,250,241,.72);
      font-size: .94rem;
      line-height: 1.45;
    }

    .trust-meter {
      position: relative;
      margin-top: 22px;
      padding: 20px;
      border-radius: 26px;
      background: rgba(255,255,255,.56);
      border: 1px solid rgba(23,37,31,.10);
    }

    .meter-title {
      display: flex;
      justify-content: space-between;
      font-weight: 850;
      color: var(--deep);
      margin-bottom: 13px;
    }

    .meter {
      height: 13px;
      border-radius: 999px;
      background: rgba(23,37,31,.10);
      overflow: hidden;
    }

    .meter > span {
      display: block;
      height: 100%;
      width: 62%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--green));
    }

    .limits {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-top: 18px;
    }

    .limit {
      padding: 13px 10px;
      border-radius: 18px;
      background: rgba(255,250,241,.74);
      border: 1px solid rgba(23,37,31,.08);
    }

    .limit b {
      display: block;
      color: var(--deep);
      font-size: 1.05rem;
    }

    .limit span {
      color: var(--muted);
      font-size: .78rem;
      font-weight: 700;
    }

    .floating {
      position: absolute;
      z-index: 3;
      max-width: 210px;
      border-radius: 24px;
      background: rgba(255,250,241,.84);
      border: 1px solid rgba(23,37,31,.13);
      box-shadow: var(--softshadow);
      padding: 14px 16px;
      font-weight: 850;
      color: var(--deep);
      backdrop-filter: blur(14px);
      animation: float 4.8s ease-in-out infinite;
    }

    .floating small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-weight: 700;
    }

    .f1 { left: -8px; top: 74px; }
    .f2 { right: -8px; top: 160px; animation-delay: -1.3s; }
    .f3 { left: -2px; bottom: 90px; animation-delay: -2.1s; }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-13px) rotate(1deg); }
    }

    section {
      width: min(1180px, calc(100% - 40px));
      margin: 80px auto 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: .75fr 1fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      color: var(--green2);
      font-size: .92rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 12px;
    }

    h2 {
      margin: 0;
      color: var(--deep);
      font-size: clamp(2.2rem, 4vw, 4.4rem);
      line-height: .95;
      letter-spacing: -.07em;
    }

    .section-head p {
      margin: 0;
      font-size: 1.13rem;
      line-height: 1.55;
      color: var(--muted);
      max-width: 630px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .feature {
      border-radius: var(--radius);
      background: rgba(255,250,241,.72);
      border: 1px solid var(--line);
      padding: 26px;
      box-shadow: var(--softshadow);
      min-height: 260px;
      position: relative;
      overflow: hidden;
    }

    .feature::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      right: -70px;
      bottom: -80px;
      border-radius: 50%;
      background: rgba(217,164,65,.10);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(15,107,79,.10);
      color: var(--green2);
      font-size: 1.45rem;
      margin-bottom: 22px;
    }

    .feature h3, .price h3, .timeline-card h3 {
      margin: 0 0 12px;
      color: var(--deep);
      font-size: 1.38rem;
      letter-spacing: -.04em;
    }

    .feature p, .price p, .timeline-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .timeline {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: center;
      border-radius: 42px;
      padding: 28px;
      background: linear-gradient(135deg, rgba(14,59,46,.98), rgba(15,107,79,.92));
      color: #fffaf1;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      inset: -100px -40px auto auto;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(217,164,65,.17);
    }

    .timeline h2, .timeline .section-kicker {
      color: #fffaf1;
    }

    .timeline p { color: rgba(255,250,241,.74); }

    .steps {
      position: relative;
      display: grid;
      gap: 12px;
    }

    .step {
      display: grid;
      grid-template-columns: 82px 1fr 80px;
      align-items: center;
      gap: 12px;
      padding: 15px;
      border-radius: 22px;
      background: rgba(255,250,241,.10);
      border: 1px solid rgba(255,250,241,.15);
      backdrop-filter: blur(12px);
    }

    .step strong {
      font-size: 1.1rem;
      letter-spacing: -.03em;
    }

    .step span {
      color: rgba(255,250,241,.68);
      font-size: .9rem;
      font-weight: 700;
    }

    .step b {
      justify-self: end;
      color: #f7d27a;
      font-size: 1.28rem;
    }

    .prices {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .product-groups {
      display: grid;
      gap: 32px;
    }

    .product-group {
      display: grid;
      gap: 16px;
    }

    .product-group-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 22px;
      border-top: 1px solid var(--line);
      padding-top: 24px;
    }

    .product-group-head h3 {
      margin: 0;
      color: var(--deep);
      font-size: 1.28rem;
      letter-spacing: 0;
    }

    .product-group-head p {
      margin: 0;
      max-width: 520px;
      color: var(--muted);
      font-weight: 650;
      line-height: 1.5;
    }

    .catalog-prices {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .price {
      padding: 26px;
      border-radius: 30px;
      background: rgba(255,250,241,.72);
      border: 1px solid var(--line);
      box-shadow: var(--softshadow);
      display: flex;
      flex-direction: column;
      min-height: 440px;
      position: relative;
      overflow: hidden;
    }

    .product-card-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      margin-bottom: 16px;
      border: 1px solid rgba(23,37,31,.12);
      border-radius: 14px;
      object-fit: cover;
      background: rgba(255,250,241,.72);
    }

    .price.featured {
      color: #fffaf1;
      background: linear-gradient(160deg, var(--deep), var(--green));
      transform: translateY(-16px);
      box-shadow: 0 32px 80px rgba(15,107,79,.24);
    }

    .price.featured h3, .price.featured p { color: #fffaf1; }
    .price.featured .amount { color: #f7d27a; }
    .price.featured li { border-color: rgba(255,250,241,.14); color: rgba(255,250,241,.82); }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .product-meta span {
      color: var(--muted);
      font-size: .78rem;
      font-weight: 900;
      text-align: right;
    }

    .featured .product-meta span {
      color: rgba(255,250,241,.72);
    }

    .tag {
      align-self: flex-start;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(217,164,65,.17);
      color: #7b5413;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .product-meta .tag {
      margin-bottom: 0;
    }

    .featured .tag {
      background: rgba(247,210,122,.18);
      color: #f7d27a;
    }

    .amount {
      margin: 22px 0 12px;
      font-size: 2.75rem;
      font-weight: 950;
      color: var(--deep);
      letter-spacing: -.06em;
    }

    .amount small {
      font-size: .96rem;
      color: inherit;
      opacity: .72;
      letter-spacing: -.02em;
    }

    .price-note {
      display: block;
      min-height: 20px;
      color: var(--muted);
      font-size: .9rem;
      font-weight: 850;
    }

    .featured .price-note {
      color: rgba(255,250,241,.72);
    }

    .price ul {
      list-style: none;
      padding: 0;
      margin: 18px 0 26px;
      display: grid;
      gap: 0;
    }

    .price li {
      padding: 11px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      line-height: 1.35;
      font-weight: 650;
    }

    .price .btn {
      margin-top: auto;
      width: 100%;
    }

    .empty-products {
      border: 1px dashed var(--line);
      border-radius: 24px;
      padding: 24px;
      color: var(--muted);
      font-weight: 800;
      background: rgba(255,250,241,.56);
    }

    .proof {
      border-radius: 42px;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255,250,241,.86), rgba(255,250,241,.56)),
        radial-gradient(circle at 0% 0%, rgba(217,164,65,.18), transparent 34%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .proof-list {
      display: grid;
      gap: 12px;
    }

    .proof-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 13px;
      align-items: start;
      padding: 16px;
      border-radius: 22px;
      background: rgba(255,255,255,.43);
      border: 1px solid rgba(23,37,31,.10);
    }

    .check {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(15,107,79,.11);
      color: var(--green);
      font-weight: 950;
    }

    .proof-item b {
      display: block;
      color: var(--deep);
      margin-bottom: 4px;
      letter-spacing: -.03em;
    }

    .proof-item span {
      display: block;
      color: var(--muted);
      line-height: 1.45;
    }

    .proof-lead {
      font-size: 1.1rem;
      margin-top: 20px;
    }

    .cta {
      margin-bottom: 80px;
      border-radius: 46px;
      padding: 48px;
      text-align: center;
      background:
        radial-gradient(circle at 20% 0%, rgba(247,210,122,.24), transparent 38%),
        linear-gradient(135deg, #102d25, #0f6b4f);
      color: #fffaf1;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "@";
      position: absolute;
      right: 40px;
      top: -70px;
      font-size: 15rem;
      font-weight: 950;
      color: rgba(255,250,241,.06);
      line-height: 1;
    }

    .cta h2 {
      color: #fffaf1;
      max-width: 850px;
      margin: 0 auto;
    }

    .cta p {
      max-width: 670px;
      margin: 22px auto 0;
      color: rgba(255,250,241,.76);
      font-size: 1.18rem;
      line-height: 1.55;
    }

    .domain-form {
      margin: 30px auto 0;
      width: min(650px, 100%);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      padding: 9px;
      border-radius: 999px;
      background: rgba(255,250,241,.14);
      border: 1px solid rgba(255,250,241,.18);
    }

    .domain-form input {
      width: 100%;
      border: 0;
      outline: 0;
      padding: 0 20px;
      background: transparent;
      color: #fffaf1;
      font-size: 1.05rem;
      font-weight: 700;
    }

    .domain-form input::placeholder { color: rgba(255,250,241,.52); }

    footer {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto 28px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--muted);
      font-weight: 650;
    }

    @media (max-width: 980px) {
      .hero,
      .section-head,
      .timeline,
      .proof {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: auto;
        padding: 24px 0 8px;
      }

      .floating {
        display: none;
      }

      .grid-3,
      .prices {
        grid-template-columns: 1fr 1fr;
      }

      .price.featured {
        transform: none;
      }

      .navlinks a:not(.nav-cta) {
        display: none;
      }
    }

    @media (max-width: 660px) {
      body {
        background:
          linear-gradient(180deg, #fbf7ef 0%, var(--bg) 58%, #efe7d8 100%);
      }

      body::before,
      .grain {
        display: none;
      }

      .nav {
        width: min(100% - 24px, 1180px);
        position: relative;
        top: auto;
        backdrop-filter: none;
      }

      .hero, section, footer {
        width: min(100% - 24px, 1180px);
      }

      .hero {
        margin-top: 42px;
        min-height: auto;
      }

      .grid-3,
      .prices,
      .limits {
        grid-template-columns: 1fr;
      }

      .product-group-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .visual {
        min-height: auto;
        padding: 14px 0 0;
      }

      .halo {
        filter: none;
        animation: none;
      }

      .mail-card {
        min-height: auto;
        border-radius: 32px;
        padding: 20px;
      }

      .domain-form {
        grid-template-columns: 1fr;
        border-radius: 28px;
      }

      .domain-form input {
        min-height: 52px;
      }

      .step {
        grid-template-columns: 1fr;
      }

      .step b {
        justify-self: start;
      }

      .cta {
        padding: 34px 20px;
        border-radius: 34px;
      }

      h1 {
        font-size: clamp(3rem, 17vw, 5rem);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
    }
    @media (max-width: 480px) {
      .hero-actions .btn {
        width: 100%;
      }

      .address {
        font-size: 1.24rem;
      }

      .address-box {
        padding: 20px;
      }

      .mail-top {
        gap: 12px;
      }

      .stamp {
        width: 68px;
        height: 68px;
        border-radius: 22px;
      }
    }
