:root {
  color-scheme: dark;
  --ink: #f8faf7;
  --muted: rgba(248, 250, 247, 0.72);
  --paper: #f6f2e8;
  --paper-ink: #17241f;
  --paper-muted: rgba(23, 36, 31, 0.68);
  --deep: #071512;
  --deep-2: #10241f;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #f3c65f;
  --green: #39d48a;
  --green-dark: #116941;
  --red: #ff6b5d;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 26px 80px rgba(0, 0, 0, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--deep);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(button, a, input, select, [tabindex]):focus {
  outline: none;
}

:where(button, a, input, select, [tabindex]):focus-visible {
  outline: 3px solid rgba(57, 212, 138, 0.8);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 21, 18, 0.62);
  box-shadow: 0 14px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 18px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #071512;
  background: linear-gradient(135deg, var(--gold), #fff0a8 46%, var(--green));
  box-shadow: inset 0 -10px 18px rgba(7, 21, 18, 0.18);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 250, 247, 0.78);
  font-size: 14px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.header-login {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #092017;
  background: var(--green);
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-login:hover,
.header-login:focus-visible,
.button:hover,
.button:focus-visible,
.stepper:hover,
.stepper:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: min(88svh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 24px 72px;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 20, 18, 0.82) 0%, rgba(5, 20, 18, 0.58) 38%, rgba(5, 20, 18, 0.10) 72%),
    linear-gradient(180deg, rgba(5, 20, 18, 0.22), rgba(5, 20, 18, 0.08) 52%, rgba(5, 20, 18, 0.84));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.title-brand {
  width: max-content;
  display: block;
  margin-bottom: 14px;
  padding: 10px 18px 12px;
  border: 1px solid rgba(243, 198, 95, 0.34);
  border-radius: 22px 22px 22px 4px;
  color: #071512;
  background:
    linear-gradient(135deg, rgba(255, 240, 168, 0.98), rgba(57, 212, 138, 0.92)),
    var(--gold);
  box-shadow:
    0 20px 70px rgba(57, 212, 138, 0.22),
    inset 0 -14px 24px rgba(7, 21, 18, 0.12);
  font-size: clamp(30px, 5vw, 64px);
  line-height: 0.9;
}

.title-main,
.title-main > span {
  display: block;
}

.title-accent {
  width: max-content;
  color: transparent;
  background: linear-gradient(90deg, var(--gold), #fff7c7 42%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 18px 38px rgba(57, 212, 138, 0.28));
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button-primary {
  color: #071512;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(57, 212, 138, 0.24);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.button-dark {
  color: var(--ink);
  background: var(--deep);
}

.button-light {
  color: #10241f;
  background: rgba(255, 255, 255, 0.88);
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .site-header,
body.modal-open main,
body.modal-open .site-footer {
  filter: blur(5px);
  transform: translateZ(0);
  transition: filter 220ms ease;
}

body.modal-open .site-header {
  transform: translateX(-50%) translateZ(0);
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-modal[hidden] {
  display: none;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(57, 212, 138, 0.22), transparent 34%),
    rgba(3, 14, 12, 0.68);
  backdrop-filter: blur(20px) saturate(126%);
}

.login-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 21, 18, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(28px) saturate(140%);
  animation: loginModalIn 220ms ease both;
}

.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.login-modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 18px;
}

.login-modal-card h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.04;
}

.login-modal-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.login-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.login-form label {
  color: rgba(248, 250, 247, 0.76);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.login-form input::placeholder {
  color: rgba(248, 250, 247, 0.42);
}

.login-form input:focus {
  border-color: rgba(57, 212, 138, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(57, 212, 138, 0.12);
}

.login-form .button {
  width: 100%;
  margin-top: 6px;
}

.login-direct {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  color: rgba(248, 250, 247, 0.68);
  font-size: 14px;
  font-weight: 750;
}

@keyframes loginModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 44px 0 0;
}

.hero-proof div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(7, 21, 18, 0.46);
  backdrop-filter: blur(16px);
}

.hero-proof dt {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  padding: 100px 24px;
}

.intro-section,
.pricing-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.section-heading h2,
.product-panel h2,
.download-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.product-panel p,
.download-card p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--paper-muted);
  font-size: 18px;
  line-height: 1.62;
}

.feature-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(23, 36, 31, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 60px rgba(23, 36, 31, 0.08);
}

.feature-number {
  color: var(--green-dark);
  font-weight: 900;
}

.feature-card h3 {
  margin: auto 0 12px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.5;
}

.product-section {
  background: linear-gradient(135deg, #081714 0%, #122820 100%);
}

.product-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.product-panel p {
  color: var(--muted);
}

.product-panel .button {
  margin-top: 28px;
}

.dashboard-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(2, 10, 8, 0.34);
}

.dash-row,
.dash-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.dash-row.active {
  background: rgba(57, 212, 138, 0.22);
}

.dash-row.danger {
  background: rgba(255, 107, 93, 0.22);
}

.dash-total {
  min-height: 86px;
  margin-top: 4px;
  color: #092017;
  background: var(--gold);
}

.dash-total strong {
  font-size: 28px;
}

.pricing-calculator {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(23, 36, 31, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 28%, rgba(57, 212, 138, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54));
  box-shadow: 0 26px 90px rgba(23, 36, 31, 0.12);
}

.pricing-ring {
  --ring-size: 360px;
  --ring-radius: calc(var(--ring-size) / 2 - 18px);
  --ring-progress: 0%;
  --ring-angle: -135deg;
  --ring-counter-angle: 135deg;
  position: relative;
  width: min(var(--ring-size), 86vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper-ink);
  touch-action: none;
  cursor: grab;
}

.pricing-ring:active {
  cursor: grabbing;
}

.pricing-ring:focus-visible {
  outline: 4px solid rgba(57, 212, 138, 0.44);
  outline-offset: 10px;
}

.ring-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from -135deg, var(--green) 0 var(--ring-progress), rgba(23, 36, 31, 0.1) var(--ring-progress) 75%, transparent 75% 100%),
    radial-gradient(circle, transparent 56%, rgba(255, 255, 255, 0.98) 57% 64%, transparent 65%);
  filter: drop-shadow(0 18px 36px rgba(17, 105, 65, 0.16));
}

.ring-track::after {
  content: "";
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 242, 232, 0.86)),
    var(--paper);
  box-shadow:
    inset 0 0 0 1px rgba(23, 36, 31, 0.08),
    0 22px 70px rgba(23, 36, 31, 0.1);
}

.ring-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 18px 34px rgba(17, 105, 65, 0.28),
    inset 0 -6px 10px rgba(7, 21, 18, 0.16);
  transform: rotate(var(--ring-angle)) translateY(calc(var(--ring-radius) * -1)) rotate(var(--ring-counter-angle));
  transition: transform 220ms ease;
}

.ring-center {
  position: relative;
  z-index: 2;
  width: min(58%, 214px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(23, 36, 31, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    #fff;
  box-shadow:
    0 24px 70px rgba(23, 36, 31, 0.12),
    inset 0 -18px 28px rgba(23, 36, 31, 0.04);
  text-align: center;
}

.ring-center span {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
}

.ring-center strong {
  font-size: clamp(38px, 6vw, 56px);
  line-height: 0.96;
  letter-spacing: 0;
}

.ring-center small {
  max-width: 150px;
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.month-marks {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.plan-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  min-height: 38px;
  margin: -19px 0 0 -29px;
  border: 1px solid rgba(23, 36, 31, 0.12);
  border-radius: 999px;
  color: var(--paper-muted);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(23, 36, 31, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  transform:
    rotate(var(--marker-angle))
    translateY(calc((var(--ring-radius) + 28px) * -1))
    rotate(var(--marker-counter-angle));
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.plan-marker.selected {
  color: #071512;
  border-color: rgba(57, 212, 138, 0.46);
  background: var(--gold);
}

.plan-marker:hover,
.plan-marker:focus-visible {
  color: var(--paper-ink);
  border-color: rgba(57, 212, 138, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.plan-marker.highlight:not(.selected) {
  color: var(--green-dark);
  border-color: rgba(57, 212, 138, 0.24);
}

.location-pill {
  display: inline-grid;
  grid-template-columns: 54px auto 54px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(23, 36, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(23, 36, 31, 0.08);
}

.location-pill span {
  min-width: 132px;
  color: var(--paper-muted);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.location-pill strong {
  color: var(--paper-ink);
  font-size: 24px;
}

.stepper {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: var(--deep);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.pricing-note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  padding: 18px 22px;
  border-radius: 22px;
  color: var(--paper-ink);
  background: rgba(57, 212, 138, 0.14);
  line-height: 1.55;
}

.pricing-cta {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-section {
  padding: 90px 24px;
  background:
    linear-gradient(180deg, rgba(246, 242, 232, 1), rgba(246, 242, 232, 0.82)),
    var(--paper);
  color: var(--paper-ink);
}

.download-card {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 21, 18, 0.94), rgba(18, 40, 32, 0.94)),
    var(--deep);
  box-shadow: var(--shadow-soft);
}

.download-card p {
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(248, 250, 247, 0.62);
  background: var(--deep);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

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

  .product-panel,
  .download-card {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    left: 18px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    padding: 8px;
    transform: none;
  }

  .brand span:last-child {
    display: none;
  }

  .header-login {
    display: none;
  }

  body.modal-open .site-header {
    transform: translateZ(0);
  }

  .hero {
    min-height: min(90svh, 900px);
    padding: 104px 18px 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 20, 18, 0.90), rgba(5, 20, 18, 0.66) 58%, rgba(5, 20, 18, 0.34)),
      linear-gradient(180deg, rgba(5, 20, 18, 0.22), rgba(5, 20, 18, 0.90));
  }

  .hero-title {
    max-width: 354px;
    font-size: clamp(38px, 12vw, 58px);
  }

  .title-brand {
    border-radius: 18px 18px 18px 4px;
    font-size: clamp(28px, 10vw, 44px);
  }

  .hero .eyebrow,
  .hero-lead {
    max-width: 310px;
  }

  .hero .eyebrow {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .feature-card {
    min-height: unset;
  }

  .section,
  .download-section {
    padding: 70px 18px;
  }

  .pricing-calculator {
    padding: 22px 12px 24px;
    border-radius: 28px;
  }

  .pricing-ring {
    --ring-size: 310px;
  }

  .plan-marker {
    width: 48px;
    min-height: 34px;
    margin: -17px 0 0 -24px;
    font-size: 12px;
  }

  .location-pill {
    width: 100%;
    grid-template-columns: 50px 1fr 50px;
  }

  .location-pill span {
    min-width: unset;
    font-size: 17px;
  }

  .stepper {
    width: 50px;
    height: 50px;
  }

  .product-panel,
  .download-card {
    padding: 24px;
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 18px;
  }
}
