<Container width={100} >
<Stack style={{ position: 'relative' }} clipBehavior="visible">
<Container
width={280}
padding={32}
decoration={{
color: '#1d0d1d',
borderRadius: 20,
boxShadow: [{
color: 'rgba(0, 0, 0, 0.1)',
blurRadius: 24,
offset: { dx: 0, dy: 8 },
}],
border: {
top: { width: 2, color: '#eb1660', style: 'solid' },
bottom: { width: 2, color: '#eb1660', style: 'solid' },
left: { width: 2, color: '#eb1660', style: 'solid' },
right: { width: 2, color: '#eb1660', style: 'solid' },
},
}}
>
<Column mainAxisSize={MainAxisSize.min} spacing={20}>
<h3 style={{
fontSize: 24,
fontWeight: 'bold',
margin: 0,
textAlign: 'center',
}}>
Pro Plan
</h3>
<Row
mainAxisAlignment={MainAxisAlignment.center}
crossAxisAlignment={CrossAxisAlignment.start}
spacing={4}
>
<span style={{ fontSize: 20, fontWeight: 600 }}>$</span>
<span style={{
fontSize: 48,
fontWeight: 'bold',
color: '#eb1660',
lineHeight: 1,
}}>
49
</span>
<span style={{ fontSize: 16, color: '#666' }}>/mo</span>
</Row>
<Column spacing={12}>
<Row spacing={8} crossAxisAlignment={CrossAxisAlignment.center}>
<span style={{ color: '#22c55e', fontSize: 18 }}>✓</span>
<span>Unlimited projects</span>
</Row>
<Row spacing={8} crossAxisAlignment={CrossAxisAlignment.center}>
<span style={{ color: '#22c55e', fontSize: 18 }}>✓</span>
<span>Priority support</span>
</Row>
<Row spacing={8} crossAxisAlignment={CrossAxisAlignment.center}>
<span style={{ color: '#22c55e', fontSize: 18 }}>✓</span>
<span>Advanced analytics</span>
</Row>
</Column>
</Column>
</Container>
<Positioned top={-12} right={20}>
<Container
paddingHorizontal={16}
paddingVertical={6}
decoration={{
gradient: {
type: 'linear',
colors: ['#eb1660', '#ff6b9d'],
begin: 'to bottom right',
},
borderRadius: 99,
boxShadow: [{
color: 'rgba(235, 22, 96, 0.25)',
blurRadius: 8,
offset: { dx: 0, dy: 2 },
}],
}}
>
<span style={{
color: 'white',
fontSize: 12,
fontWeight: 'bold',
letterSpacing: '0.5px',
}}>
POPULAR
</span>
</Container>
</Positioned>
</Stack>
</Container>