html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

:root {
  color-scheme: light;
  font-family: "Space Grotesk", sans-serif;
  --bg: #f6f2ea;
  --bg-alt: #efe7da;
  --surface: #ffffff;
  --text: #1f1c17;
  --muted: #5e554b;
  --primary: #0f5b50;
  --primary-contrast: #f7f2eb;
  --accent: #f7b267;
  --outline: #d9c8b2;
  --shadow: 0 18px 50px rgba(31, 28, 23, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

[data-theme="studio"] {
  --bg: #f6f2ea;
  --bg-alt: #efe7da;
  --surface: #ffffff;
  --text: #1f1c17;
  --muted: #5e554b;
  --primary: #0f5b50;
  --primary-contrast: #f7f2eb;
  --accent: #f7b267;
  --outline: #d9c8b2;
}

[data-theme="desert"] {
  --bg: #fef7f0;
  --bg-alt: #fde2c9;
  --surface: #ffffff;
  --text: #2a1d16;
  --muted: #7a5c4c;
  --primary: #b94d3b;
  --primary-contrast: #fff2e6;
  --accent: #5c91a6;
  --outline: #f2c6a4;
}

[data-theme="noir"] {
  color-scheme: dark;
  --bg: #101014;
  --bg-alt: #18191f;
  --surface: #1f2028;
  --text: #f2f3f7;
  --muted: #b6b9c6;
  --primary: #f2f3f7;
  --primary-contrast: #101014;
  --accent: #f5c676;
  --outline: #2e303b;
}

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

body {
  position: relative;
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 46%),
    radial-gradient(circle at 82% 24%, color-mix(in srgb, var(--primary) 24%, transparent), transparent 42%),
    radial-gradient(circle at 52% 82%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 44%),
    linear-gradient(145deg, var(--bg-alt), var(--bg), color-mix(in srgb, var(--accent) 16%, var(--bg)));
  background-size: 220% 220%, 240% 240%, 260% 260%, 320% 320%;
  animation: gradientShift 30s linear infinite;
  color: var(--text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -12vmax;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  filter: blur(8px);
}

body::before {
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0 18%, transparent 19%),
    radial-gradient(circle, color-mix(in srgb, var(--primary) 18%, transparent) 0 12%, transparent 13%),
    radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent) 0 8%, transparent 9%),
    radial-gradient(circle, color-mix(in srgb, var(--primary) 16%, transparent) 0 10%, transparent 11%),
    radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent) 0 6%, transparent 7%);
  background-size: 34rem 34rem, 22rem 22rem, 14rem 14rem, 18rem 18rem, 10rem 10rem;
  background-position: 4% 12%, 77% 9%, 63% 41%, 18% 84%, 91% 67%;
  animation: orbDriftA 26s ease-in-out infinite;
}

body::after {
  background:
    radial-gradient(circle, color-mix(in srgb, var(--primary) 22%, transparent) 0 16%, transparent 17%),
    radial-gradient(circle, color-mix(in srgb, var(--accent) 24%, transparent) 0 10%, transparent 11%),
    radial-gradient(circle, color-mix(in srgb, var(--primary) 14%, transparent) 0 7%, transparent 8%),
    radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0 9%, transparent 10%),
    radial-gradient(circle, color-mix(in srgb, var(--primary) 12%, transparent) 0 5%, transparent 6%);
  background-size: 28rem 28rem, 18rem 18rem, 12rem 12rem, 16rem 16rem, 8rem 8rem;
  background-position: 13% 72%, 86% 58%, 29% 28%, 54% 92%, 95% 18%;
  animation: orbDriftB 32s ease-in-out infinite;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  padding: 32px clamp(20px, 6vw, 80px) 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  background: transparent;
  overflow-x: clip;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: -6% -4%;
  pointer-events: none;
}

.page::before {
  z-index: -1;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      transparent 0deg,
      color-mix(in srgb, var(--accent) 12%, transparent) 70deg,
      transparent 140deg,
      color-mix(in srgb, var(--primary) 10%, transparent) 220deg,
      transparent 300deg,
      color-mix(in srgb, var(--accent) 8%, transparent) 360deg
    );
  filter: blur(48px);
  opacity: 0.5;
  animation: flareSpin 34s linear infinite;
}

.page::after {
  z-index: -1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      color-mix(in srgb, var(--primary) 5%, transparent) 24%,
      transparent 46%,
      color-mix(in srgb, var(--accent) 6%, transparent) 64%,
      transparent 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 58px,
      color-mix(in srgb, var(--outline) 10%, transparent) 58px 59px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 58px,
      color-mix(in srgb, var(--outline) 8%, transparent) 58px 59px
    );
  mask-image: radial-gradient(circle at center, black 34%, transparent 92%);
  opacity: 0.28;
  animation: gridDrift 26s linear infinite;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 14px;
  font-weight: 700;
  font-size: 20px;
  font-family: "Fraunces", serif;
}

.brand-name {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.brand-tag {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.theme-switcher {
  display: flex;
  gap: 12px;
  background: var(--surface);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.theme-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.theme-btn.is-active {
  background: var(--primary);
  color: var(--primary-contrast);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 6vw, 48px);
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 58px);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 26%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 46%, var(--outline));
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.primary-btn,
.ghost-btn {
  position: relative;
  isolation: isolate;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
  font-family: "Space Grotesk", sans-serif;
}

.primary-btn::before,
.ghost-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  z-index: -1;
}

.primary-btn {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.ghost-btn {
  background: transparent;
  color: var(--text);
  border-color: var(--outline);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.primary-btn:hover::before,
.ghost-btn:hover::before {
  transform: translateX(130%);
}

.primary-btn:active,
.ghost-btn:active,
.theme-btn:active {
  transform: translateY(0) scale(0.985);
}

.primary-btn:focus-visible,
.ghost-btn:focus-visible,
.theme-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 38%, transparent);
}

.primary-btn.small,
.ghost-btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  background: var(--surface);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--outline);
}

.trust-row h3 {
  margin: 0;
  font-size: 18px;
}

.trust-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(247, 178, 103, 0.04),
    rgba(247, 178, 103, 0.1)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(31, 28, 23, 0.18);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--outline));
}

.hero-card:hover::after {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.card-header span {
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: var(--text);
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.card-body h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 28px;
}

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

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.card-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.card-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.process-step {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, var(--surface));
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  align-self: center;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.contact-form {
  gap: 18px;
}

.contact-form .form-row {
  display: grid;
  gap: 8px;
}

.contact-form .form-row + .form-row {
  margin-top: 4px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0 0 6px;
}

.section {
  display: grid;
  gap: 24px;
}

.section + .section {
  margin-top: 20px;
}

.section-title h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 32px;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.work-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--outline);
  display: grid;
  gap: 16px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(247, 178, 103, 0.04),
    rgba(247, 178, 103, 0.1)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.85;
  pointer-events: none;
}

.hero-card:hover::after,
.work-card:hover::before {
  opacity: 0.9;
}

.hero-card > *,
.work-card > * {
  position: relative;
  z-index: 1;
}

.card-ripple {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--ripple-size, 24px);
  height: var(--ripple-size, 24px);
  transform: translate(-50%, -50%) scale(0.08);
  transform-origin: center;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(247, 178, 103, 0.18) 0%,
    rgba(247, 178, 103, 0.12) 48%,
    rgba(247, 178, 103, 0.08) 72%,
    rgba(247, 178, 103, 0.04) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: cardRipple 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(31, 28, 23, 0.16);
  border-color: color-mix(in srgb, var(--accent) 44%, var(--outline));
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.work-header span {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--outline);
  padding: 4px 10px;
  border-radius: 999px;
}

.split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.feature-list li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--outline);
}

.stacked {
  display: grid;
  gap: 12px;
}

.stack-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--outline);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.stack-card:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 34px rgba(31, 28, 23, 0.12);
  border-color: color-mix(in srgb, var(--primary) 36%, var(--outline));
}

.addon-showcase {
  gap: 28px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.addon-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--outline) 78%, var(--accent));
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--surface) 88%, var(--accent)),
      var(--surface)
    );
  box-shadow: 0 20px 44px rgba(31, 28, 23, 0.12);
  display: grid;
  gap: 14px;
  min-height: 250px;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 34%, transparent);
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(31, 28, 23, 0.16);
  border-color: color-mix(in srgb, var(--accent) 56%, var(--outline));
}

.addon-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 26px;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
}

.addon-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.addon-card-primary {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 30%, transparent), transparent 34%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--accent) 18%, var(--surface)),
      color-mix(in srgb, var(--primary) 9%, var(--surface))
    );
}

.addon-card-dark {
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--primary) 84%, #000),
      color-mix(in srgb, var(--accent) 18%, var(--primary))
    );
  border-color: color-mix(in srgb, var(--accent) 28%, var(--primary));
}

.addon-card-dark h3,
.addon-card-dark p,
.addon-card-dark .addon-kicker {
  color: var(--primary-contrast);
}

.addon-card-dark .ghost-btn {
  border-color: color-mix(in srgb, var(--primary-contrast) 38%, transparent);
  color: var(--primary-contrast);
}

.addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.addon-tags span,
.addon-mini span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 70%, var(--accent));
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--outline));
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.addon-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.addon-bar {
  margin-top: auto;
  height: 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--outline) 70%, var(--surface));
  overflow: hidden;
}

.addon-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: addonPulse 3.2s ease-in-out infinite;
}

.stack-card h3 {
  margin: 6px 0 8px;
}

.callout {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: var(--primary-contrast);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.callout h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 8px;
}

.callout p {
  margin: 0;
  color: color-mix(in srgb, var(--primary-contrast) 85%, transparent);
}

.site-footer {
  border-top: 1px solid var(--outline);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .theme-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .section,
  .callout {
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
  }

  .hero-card {
    animation-delay: 0.1s;
  }

  .section {
    animation-delay: 0.2s;
  }

  .callout {
    animation-delay: 0.25s;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 12%, 88% 6%, 46% 100%, 0% 50%;
  }
  25% {
    background-position: 82% 0%, 100% 72%, 8% 86%, 38% 100%;
  }
  50% {
    background-position: 100% 78%, 36% 100%, 0% 24%, 100% 62%;
  }
  75% {
    background-position: 28% 100%, 0% 34%, 92% 0%, 62% 0%;
  }
  100% {
    background-position: 0% 12%, 88% 6%, 46% 100%, 0% 50%;
  }
}

@keyframes orbDriftA {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.38;
  }
  33% {
    transform: translate3d(3vw, -2vh, 0) scale(1.08);
    opacity: 0.58;
  }
  66% {
    transform: translate3d(-2vw, 3vh, 0) scale(0.92);
    opacity: 0.32;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.38;
  }
}

@keyframes orbDriftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.28;
  }
  25% {
    transform: translate3d(-3vw, -1vh, 0) scale(1.12);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(2vw, 3vh, 0) scale(0.9);
    opacity: 0.22;
  }
  75% {
    transform: translate3d(4vw, -2vh, 0) scale(1.06);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.28;
  }
}

@keyframes flareSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(18px, -14px, 0);
    opacity: 0.3;
  }
  100% {
    transform: translate3d(36px, -28px, 0);
    opacity: 0.2;
  }
}

@keyframes addonPulse {
  0% {
    width: 58%;
  }
  50% {
    width: 82%;
  }
  100% {
    width: 58%;
  }
}

@keyframes cardRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.08);
    opacity: 0.04;
  }
  35% {
    opacity: 0.14;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

