Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  backdrop-filter: blur(2px) grayscale(80%);
  background: rgb(var(--color-neutral-background-raw) / 70%);
  inset: -16px -24px;
}
 
.container {
  // Gradient border effect using padding + background + pseudo-element
  padding: 2px;
  background: linear-gradient(109.47deg, var(--color-accent-canteloupe-base) 0%, var(--color-accent-persimmon-base) 50%, var(--color-accent-plum-base) 100%);
  border-radius: 12px;
  width: 780px;
  box-shadow: 0 8px 24px rgb(var(--color-neutral-shadow-raw) / 24%),  0 4px 16px rgb(var(--color-neutral-shadow-raw) / 32%);
  position: relative;
  transform: translateY(-3rem);
 
  // Inner content container with actual background
  &::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--color-neutral-background);
    opacity: 0.95;
    border-radius: 10px;
    z-index: 0;
  }
 
  // All children need to be above the pseudo-element
  > * {
    position: relative;
    z-index: 1;
  }
}
 
.content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-base);
}
 
.badge {
  transform: scale(1.4);
}
 
.title {
  // Typography component handles font styles
  margin: 0;
}
 
.description {
  // Typography component handles font styles
  max-width: 600px;
  margin: 0;
}
 
.actions {
  display: flex;
  gap: var(--spacing-base);
  margin-top: var(--spacing-tight);
  flex-wrap: wrap;
  justify-content: center;
 
  button {
    white-space: nowrap;
  }
}