:root {
  color-scheme: light;
  --bg: #f4f1eb;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #cf4c1b;
  --accent-dark: #a33a12;
  --border: #e2ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #ffffff, var(--bg));
  color: var(--text);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 20px 120px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.hero h1 {
  margin: 0 0 6px;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero h1 img {
  border-radius: 8px;
}

.logo-mark {
  border-radius: 8px;
}

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

.hero .hero-intro {
  margin-bottom: 6px;
  max-width: 620px;
}

.hero .hero-step {
  font-weight: 600;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.context-nav {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.context-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.context-link.is-active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.profile-menu {
  position: relative;
}

.profile-trigger {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-trigger:hover {
  transform: none;
  box-shadow: none;
}

.profile-trigger img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.16);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 30;
}

.profile-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.profile-email {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  word-break: break-word;
}

.profile-popover .ghost {
  align-self: flex-start;
}

.profile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.profile-actions .ghost {
  align-self: auto;
}

.profile-brew {
  font-size: 11px;
  padding: 5px 10px;
}

.status {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #efe7da;
  color: var(--accent-dark);
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #efe7da;
  color: var(--accent-dark);
}

.user-badge img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.user-badge .user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.user-badge .user-name {
  font-weight: 700;
  font-size: 14px;
}

.user-badge .user-email {
  font-size: 12px;
  color: var(--muted);
}

.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status[data-state="busy"] {
  background: #ffe8cc;
  color: #b35b00;
}

.status[data-state="error"] {
  background: #fde2e2;
  color: #b42318;
}

.status[data-state="ok"] {
  background: #dff7e1;
  color: #0f7a2a;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.06);
}

.card h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.welcome-card {
  padding: 24px;
}

.welcome-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.welcome-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8f5f0;
  padding: 12px;
}

.welcome-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 1px;
}

.welcome-step h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.welcome-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.welcome-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.welcome-shot {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.welcome-shot .preview-title {
  margin-bottom: 8px;
}

.welcome-shots img,
.welcome-shots video {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f7f4ef;
  display: block;
}

.welcome-auth {
  margin-top: 2px;
}

.welcome-brew {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  margin-bottom: 14px;
}

.welcome-brew h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.welcome-brew-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.welcome-brew-list a {
  color: var(--accent-dark);
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea,
select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 1fr);
  gap: 20px;
  align-items: start;
}

.avatar-switcher {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.avatar-switcher label {
  margin: 0;
  flex: 1 1 260px;
}

.avatar-switcher select {
  min-width: 220px;
}

.avatar-switcher-link {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.auth-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#generateVideoBtn {
  margin-top: 10px;
}

button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

button.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-color: transparent;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.status {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  min-height: 18px;
}

.brew-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.brew-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.status[data-state='error'] {
  color: #c0392b;
}

.status[data-state='ok'] {
  color: #2d7a46;
}

.status[data-state='busy'] {
  color: #8a5a00;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(207, 76, 27, 0.25);
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: white;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

.auth-btn-tiktok {
  background: #111;
}

.auth-btn-tiktok:hover {
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.3);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
}

.button-link.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview {
  margin-top: 16px;
}

.preview-title {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.preview img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f7f4ef;
}

.share-download-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prompt-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #f8f5f0;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 12px;
}

pre {
  background: #111;
  color: #f0f0f0;
  padding: 16px;
  border-radius: 12px;
  max-height: 280px;
  overflow: auto;
}

.share-card {
  position: relative;
  overflow: hidden;
}

.share-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 107, 74, 0.12), rgba(45, 143, 132, 0.12));
  opacity: 0.6;
  pointer-events: none;
}

.share-card > * {
  position: relative;
  z-index: 1;
}

.share-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.share-banner h2 {
  margin: 0 0 6px;
}

.share-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.share-block {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.share-block h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.share-inline {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(24, 23, 26, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-name {
  margin: 0;
  font-weight: 600;
}

.footer-tag {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-size: 0.85rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.avatar-top-image {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.share-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.share-image-card {
  margin-bottom: 0;
}

.video-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.avatar-collections-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.avatar-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-height: 72vh;
  overflow-y: auto;
  padding-right: 4px;
}

.avatar-collection-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.avatar-collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.12);
}

.avatar-collection-thumb {
  background: #f7f4ef;
}

.avatar-collection-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.avatar-collection-body {
  padding: 12px;
}

.avatar-collection-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.avatar-collection-body .muted {
  margin: 0 0 8px;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.video-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.12);
}

.video-item-clickable {
  cursor: pointer;
}

.video-item-processing {
  border-style: dashed;
  background: #fffaf0;
}

.video-item-failed {
  border-style: dashed;
  border-color: #e5b6b6;
  background: #fff4f4;
}

.video-item-processing:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.video-item-failed:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.video-item-preview {
  background: #111;
}

.video-item-processing .video-item-preview {
  background: #fff3de;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.video-item-failed .video-item-preview {
  background: #ffe8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.processing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9a4e00;
  font-size: 14px;
  font-weight: 600;
}

.processing-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(154, 78, 0, 0.25);
  border-top-color: #9a4e00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.video-item-content {
  padding: 12px;
}

.video-item-content h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.video-item-content .muted {
  margin-bottom: 8px;
}

.video-item-cta {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}

.ghost-link {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.share-video-player {
  width: min(100%, 360px);
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #111;
}

.brew-checkout-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.brew-pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.brew-pack-card {
  border: 1px solid #cfd6df;
  border-radius: 16px;
  background: linear-gradient(165deg, #eef3f8 0%, #d7dee7 100%);
  color: var(--text);
  text-align: left;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(45, 66, 95, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brew-pack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(45, 66, 95, 0.2);
  border-color: #a5b5c8;
}

.brew-pack-cup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.brew-pack-cup {
  width: 170px;
  height: 200px;
  border-radius: 28px 28px 30px 30px;
  position: relative;
  background: linear-gradient(145deg, #dfe7ef 0%, #b6ccde 52%, #dce3ec 100%);
  border: 1px solid rgba(115, 137, 161, 0.35);
  box-shadow: inset -12px -18px 26px rgba(113, 135, 164, 0.28), inset 10px 14px 24px rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  overflow: visible;
}

.brew-pack-cup::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 198px;
  height: 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fafc 0%, #dce4ed 100%);
  border: 1px solid rgba(126, 146, 170, 0.3);
  box-shadow: 0 6px 12px rgba(97, 120, 151, 0.18);
}

.brew-pack-cup::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 20px;
  border-radius: 999px;
  background: rgba(48, 82, 114, 0.18);
  filter: blur(11px);
}

.brew-pack-leaf {
  width: 56px;
  height: 32px;
  border-radius: 32px 32px 32px 8px;
  background: linear-gradient(145deg, #0b8f46 0%, #4cd46b 100%);
  box-shadow: inset 0 -5px 10px rgba(6, 69, 35, 0.45), 0 4px 8px rgba(11, 84, 42, 0.28);
  transform: rotate(-9deg);
  margin-bottom: 8px;
}

.brew-pack-amount {
  display: block;
  font-size: 58px;
  line-height: 0.92;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 8px 18px rgba(23, 57, 91, 0.38);
}

.brew-pack-word {
  display: block;
  margin-top: 4px;
  font-size: 40px;
  line-height: 1;
  font-weight: 750;
  color: #fff;
  text-shadow: 0 8px 18px rgba(23, 57, 91, 0.38);
}

.brew-pack-meta h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.brew-pack-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.brew-pack-description {
  color: var(--text);
  line-height: 1.35;
}

.brew-pack-estimate {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.brew-pack-cta {
  margin-top: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
}

.brew-pack-starter .brew-pack-cup {
  box-shadow: inset -12px -18px 26px rgba(113, 135, 164, 0.28), inset 10px 14px 24px rgba(255, 255, 255, 0.58);
}

.brew-pack-creator .brew-pack-cup {
  box-shadow: inset -12px -18px 26px rgba(95, 127, 161, 0.3), inset 10px 14px 24px rgba(255, 255, 255, 0.58);
}

.brew-pack-pro .brew-pack-cup {
  box-shadow: inset -12px -18px 26px rgba(72, 115, 159, 0.32), inset 10px 14px 24px rgba(255, 255, 255, 0.56);
}

.brew-pack-studio .brew-pack-cup {
  box-shadow: inset -12px -18px 26px rgba(60, 107, 156, 0.34), inset 10px 14px 24px rgba(255, 255, 255, 0.56);
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-controls {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .split {
    grid-template-columns: 1fr;
  }

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

  .video-list-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-image-grid {
    grid-template-columns: 1fr;
  }

  .welcome-steps,
  .welcome-shots {
    grid-template-columns: 1fr;
  }

  .welcome-shots img,
  .welcome-shots video {
    height: 240px;
  }

  .brew-pack-grid {
    grid-template-columns: 1fr;
  }

  .brew-pack-cup-wrap {
    min-height: 190px;
  }

  .brew-pack-cup {
    width: 150px;
    height: 178px;
  }

  .brew-pack-cup::before {
    width: 176px;
  }

  .brew-pack-amount {
    font-size: 48px;
  }

  .brew-pack-word {
    font-size: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}
