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

    :root {
      --accent:           #0EA5E9;
      --accent-dim:       rgba(14,165,233,0.12);
      --accent-glow:      rgba(14,165,233,0.30);

      --subs:             #F5821A;
      --subs-dim:         rgba(245,130,26,0.13);
      --subs-glow:        rgba(245,130,26,0.22);

      --creators:         #E83E8C;
      --creators-dim:     rgba(232,62,140,0.13);
      --creators-glow:    rgba(232,62,140,0.22);

      --social:           #4F46E5;
      --social-dim:       rgba(79,70,229,0.13);
      --social-glow:      rgba(79,70,229,0.22);

      --sales:            #16A34A;
      --sales-dim:        rgba(22,163,74,0.13);
      --sales-glow:       rgba(22,163,74,0.22);

      --affiliates:       #7C3AED;
      --affiliates-dim:   rgba(124,58,237,0.13);
      --affiliates-glow:  rgba(124,58,237,0.22);

      --bg:        #08090c;
      --surface:   #0f1117;
      --surface2:  #161b27;
      --border:    rgba(255,255,255,0.07);
      --text:      #f0f0f0;
      --muted:     #6b7280;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== NAV ===== */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(8,9,12,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1100px;
      margin: 0 auto;
      gap: 16px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo {
      width: 30px;
      height: 30px;
      border-radius: 8px;
    }

    .nav-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--muted);
      transition: background 0.2s, color 0.2s;
    }
    .nav-link:hover { background: var(--surface); color: var(--text); }

    .nav-cta {
      font-size: 13px;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 9px;
      text-decoration: none;
      background: var(--accent);
      color: #000;
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; }

    @media (max-width: 700px) {
      .nav-links { display: none; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      padding: 110px 0 96px;
      text-align: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 45% 60% at 10% 55%, rgba(245,130,26,0.07)  0%, transparent 65%),
        radial-gradient(ellipse 40% 55% at 30% 45%, rgba(232,62,140,0.06)  0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 50% 20%, rgba(79,70,229,0.07)   0%, transparent 65%),
        radial-gradient(ellipse 40% 55% at 70% 45%, rgba(22,163,74,0.06)   0%, transparent 65%),
        radial-gradient(ellipse 45% 60% at 90% 55%, rgba(124,58,237,0.07)  0%, transparent 65%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-dim);
      border: 1px solid rgba(14,165,233,0.3);
      border-radius: 99px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 28px;
      letter-spacing: 0.01em;
    }

    .hero-logo {
      width: 88px;
      height: 88px;
      border-radius: 22px;
      margin: 0 auto 28px;
      display: block;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.10),
        0 20px 60px rgba(0,0,0,0.55),
        0 0 40px var(--accent-glow);
    }

    .hero h1 {
      font-size: clamp(42px, 6.5vw, 80px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.02;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(17px, 2.2vw, 21px);
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto 40px;
      line-height: 1.55;
    }

    .hero-tagline {
      font-size: clamp(18px, 2.4vw, 23px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0 auto 44px;
    }

    .hero-categories {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .cat-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border-radius: 99px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid transparent;
    }

    .cat-pill.subs       { background: var(--subs-dim);       border-color: rgba(245,130,26,0.3);  color: #ffb06e; }
    .cat-pill.creators   { background: var(--creators-dim);   border-color: rgba(232,62,140,0.3);  color: #ff85bb; }
    .cat-pill.social     { background: var(--social-dim);     border-color: rgba(79,70,229,0.3);   color: #9d97ff; }
    .cat-pill.sales      { background: var(--sales-dim);      border-color: rgba(22,163,74,0.3);   color: #5de899; }
    .cat-pill.affiliates { background: var(--affiliates-dim); border-color: rgba(124,58,237,0.3);  color: #c398ff; }

    .cat-dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      flex-shrink: 0;
    }

    .cat-dot.subs       { background: var(--subs); }
    .cat-dot.creators   { background: var(--creators); }
    .cat-dot.social     { background: var(--social); }
    .cat-dot.sales      { background: var(--sales); }
    .cat-dot.affiliates { background: var(--affiliates); }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--accent);
      color: #000;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: 12px;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .hero-cta:hover { opacity: 0.88; transform: translateY(-1px); }
    .hero-cta svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

    /* ===== LIFESTYLE ===== */
    .lifestyle { padding: 16px 0 88px; text-align: center; }
    .lifestyle h2 {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 36px;
      color: var(--text);
    }
    .lifestyle-img {
      width: 100%;
      max-width: 340px;
      height: auto;
      border-radius: 30px;
      box-shadow:
        0 40px 100px rgba(0,0,0,0.6),
        0 0 80px rgba(14,165,233,0.12);
    }
    @media (max-width: 700px) {
      .lifestyle h2 { font-size: 24px; }
      .lifestyle-img { max-width: 280px; }
    }

    /* ===== SCREENSHOTS ===== */
    .screenshots-section { padding: 0 0 96px; }

    .screenshots-label {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 48px;
    }

    .screenshots-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      max-width: 900px;
      margin: 0 auto;
      align-items: start;
    }

    .screenshot-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .screenshot-shell {
      width: 100%;
      max-width: 260px;
      background: #1c1c1e;
      border-radius: 44px;
      padding: 12px;
      box-shadow:
        0 0 0 1.5px rgba(255,255,255,0.18),
        0 0 0 3px rgba(0,0,0,0.9),
        0 32px 80px rgba(0,0,0,0.65),
        0 0 60px rgba(14,165,233,0.10);
    }

    .screenshot-screen {
      border-radius: 34px;
      overflow: hidden;
    }

    .screenshot-screen img {
      width: 100%;
      display: block;
    }

    .screenshot-caption {
      text-align: center;
    }

    .screenshot-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .screenshot-tag.free { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--muted); }
    .screenshot-tag.plus { background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3); color: var(--accent); }
    .screenshot-tag.pro  { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3); color: #c398ff; }

    .screenshot-caption strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .screenshot-caption p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    @media (max-width: 960px) {
      .screenshots-grid { grid-template-columns: repeat(2, 1fr); max-width: 580px; }
    }

    @media (max-width: 700px) {
      .screenshots-grid { grid-template-columns: 1fr; gap: 48px; max-width: 300px; }
    }

    /* ===== SERVICES ===== */
    .services-section { padding: 96px 0; }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--accent-dim);
      border: 1px solid rgba(14,165,233,0.25);
      border-radius: 99px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .cat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }

    .cat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .cat-card:hover { transform: translateY(-3px); }
    .cat-card:hover::before { opacity: 1; }

    .cat-card.subs::before       { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(245,130,26,0.09)  0%, transparent 70%); }
    .cat-card.creators::before   { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232,62,140,0.09)  0%, transparent 70%); }
    .cat-card.social::before     { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(79,70,229,0.09)   0%, transparent 70%); }
    .cat-card.sales::before      { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(22,163,74,0.09)   0%, transparent 70%); }
    .cat-card.affiliates::before { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(124,58,237,0.09)  0%, transparent 70%); }

    .cat-card.subs:hover       { border-color: rgba(245,130,26,0.35);  box-shadow: 0 20px 60px rgba(245,130,26,0.07); }
    .cat-card.creators:hover   { border-color: rgba(232,62,140,0.35);  box-shadow: 0 20px 60px rgba(232,62,140,0.07); }
    .cat-card.social:hover     { border-color: rgba(79,70,229,0.35);   box-shadow: 0 20px 60px rgba(79,70,229,0.07); }
    .cat-card.sales:hover      { border-color: rgba(22,163,74,0.35);   box-shadow: 0 20px 60px rgba(22,163,74,0.07); }
    .cat-card.affiliates:hover { border-color: rgba(124,58,237,0.35);  box-shadow: 0 20px 60px rgba(124,58,237,0.07); }

    .cat-card.suggest {
      border-style: dashed;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0;
    }
    .cat-card.suggest::before { background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(14,165,233,0.07) 0%, transparent 70%); }
    .cat-card.suggest:hover   { border-color: rgba(14,165,233,0.4); box-shadow: 0 20px 60px rgba(14,165,233,0.06); }

    .suggest-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--accent-dim);
      border: 1px solid rgba(14,165,233,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .suggest-title {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .suggest-sub {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 200px;
      margin-bottom: 20px;
    }

    .suggest-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
      padding: 8px 18px;
      border-radius: 99px;
      background: var(--accent-dim);
      border: 1px solid rgba(14,165,233,0.25);
      transition: background 0.2s, border-color 0.2s;
    }
    .suggest-link:hover { background: rgba(14,165,233,0.2); border-color: rgba(14,165,233,0.45); }

    .cat-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .cat-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .cat-icon.subs       { background: var(--subs-dim);       box-shadow: 0 0 0 1px rgba(245,130,26,0.2); }
    .cat-icon.creators   { background: var(--creators-dim);   box-shadow: 0 0 0 1px rgba(232,62,140,0.2); }
    .cat-icon.social     { background: var(--social-dim);     box-shadow: 0 0 0 1px rgba(79,70,229,0.2); }
    .cat-icon.sales      { background: var(--sales-dim);      box-shadow: 0 0 0 1px rgba(22,163,74,0.2); }
    .cat-icon.affiliates { background: var(--affiliates-dim); box-shadow: 0 0 0 1px rgba(124,58,237,0.2); }

    .cat-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .subs .cat-eyebrow       { color: var(--subs); }
    .creators .cat-eyebrow   { color: var(--creators); }
    .social .cat-eyebrow     { color: var(--social); }
    .sales .cat-eyebrow      { color: var(--sales); }
    .affiliates .cat-eyebrow { color: var(--affiliates); }

    .cat-card-name {
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .service-chip {
      font-size: 12px;
      font-weight: 600;
      padding: 4px 11px;
      border-radius: 99px;
      border: 1px solid var(--border);
      color: var(--muted);
      background: var(--surface2);
      transition: color 0.2s, border-color 0.2s;
    }

    .subs .service-chip:hover       { color: #ffb06e; border-color: rgba(245,130,26,0.4); }
    .creators .service-chip:hover   { color: #ff85bb; border-color: rgba(232,62,140,0.4); }
    .social .service-chip:hover     { color: #9d97ff; border-color: rgba(79,70,229,0.4); }
    .sales .service-chip:hover      { color: #5de899; border-color: rgba(22,163,74,0.4); }
    .affiliates .service-chip:hover { color: #c398ff; border-color: rgba(124,58,237,0.4); }

    .service-chip.coming {
      opacity: 0.45;
      font-style: italic;
    }

    /* ===== FEATURES ===== */
    .features-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 96px 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: border-color 0.25s, transform 0.25s;
    }

    .feature-card:hover {
      border-color: rgba(14,165,233,0.3);
      transform: translateY(-3px);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--accent-dim);
      border: 1px solid rgba(14,165,233,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 20px;
    }

    .feature-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .feature-card h3 {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    .tier-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .tier-badge.plus {
      background: rgba(14,165,233,0.12);
      border: 1px solid rgba(14,165,233,0.3);
      color: var(--accent);
    }

    .tier-badge.pro {
      background: rgba(124,58,237,0.12);
      border: 1px solid rgba(124,58,237,0.3);
      color: #c398ff;
    }

    /* ===== PRICING ===== */
    .pricing-section { padding: 96px 0; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .pricing-card.highlighted {
      border-color: rgba(14,165,233,0.4);
      background: linear-gradient(160deg, rgba(14,165,233,0.07) 0%, var(--surface) 55%);
    }

    .pricing-card.highlighted::before {
      content: 'Most Popular';
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #000;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 99px;
      white-space: nowrap;
    }

    .pricing-tier {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .pricing-card.highlighted .pricing-tier { color: var(--accent); }

    .pricing-price {
      font-size: 52px;
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-price sup {
      font-size: 26px;
      font-weight: 700;
      vertical-align: super;
      letter-spacing: 0;
    }

    .pricing-cadence {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .pricing-alt {
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 28px;
      min-height: 18px;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      flex: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--muted);
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-features li.off {
      opacity: 0.35;
    }
    .pricing-features li.off::before { content: '—'; color: var(--muted); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo {
      width: 34px;
      height: 34px;
      border-radius: 10px;
    }

    .footer-name {
      font-size: 15px;
      font-weight: 700;
    }

    .footer-tagline {
      font-size: 12px;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-social-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0.7;
    }

    .footer-social a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-social a:hover { color: var(--text); }

    .footer-copy {
      font-size: 12px;
      color: var(--muted);
      width: 100%;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid    { grid-template-columns: 1fr; max-width: 440px; }
    }

    @media (max-width: 700px) {
      .hero { padding: 72px 0 64px; }
      .categories-grid { grid-template-columns: 1fr; }
      .features-grid   { grid-template-columns: 1fr; }
      .pricing-grid    { grid-template-columns: 1fr; }
      .footer-inner    { flex-direction: column; align-items: flex-start; }
      .footer-nav      { align-items: flex-start; }
      section, .services-section, .features-section, .pricing-section { padding: 64px 0; }
    }
