:root {
--pink: #f4a7c3;
--blue: #7dd6f5;
--purple: #c67de8;
--bg: #080810;
--bg2: #0e0e1a;
--bg3: #13131f;
--text: #e8e0f0;
--text-dim: #9d96b5; /* bumped from #8880a0 for contrast */
--border: rgba(199,125,232,0.15);
--glow-pink: rgba(244,167,195,0.12);
--glow-blue: rgba(125,214,245,0.12);
--glow-purple: rgba(198,125,232,0.15);
}

/* Skip navigation link */
.skip-link {
position: absolute;
top: -100px;
left: 16px;
background: var(--purple);
color: var(--bg);
padding: 12px 20px;
font-family: 'Syne', sans-serif;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.05em;
text-decoration: none;
z-index: 10000;
transition: top 0.2s;
}
.skip-link:focus {
top: 16px;
}

* { margin: 0; padding: 0px; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
background: var(--bg);
color: var(--text);
font-family: 'Cormorant Garamond', serif;
overflow-x: hidden;
cursor: none;
}

/* Global keyboard focus styles — only show for keyboard, not mouse */
:focus-visible {
outline: 2px solid var(--blue);
outline-offset: 3px;
}

/* Remove cursor: none from interactive elements so keyboard users aren't stranded */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
cursor: auto;
}

/* Custom cursor — hidden on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
  }
  
/* Custom cursor */
.cursor {
position: fixed;
width: 12px; height: 12px;
background: var(--blue);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transition: transform 0.15s ease, background 0.2s;
mix-blend-mode: screen;
}
.cursor-ring {
position: fixed;
width: 36px; height: 36px;
border: 1px solid var(--purple);
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transition: transform 0.35s ease, width 0.3s, height 0.3s;
transform: translate(-50%, -50%);
mix-blend-mode: screen;
}
.cursor.hovering { transform: scale(2.5); background: var(--pink); }
.cursor-ring.hovering { width: 60px; height: 60px; border-color: var(--blue); }

/* Noise overlay */
body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9997;
opacity: 0.6;
}

/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
padding: 0 56px;
height: 90px;
display: flex; align-items: center; justify-content: space-between;
background: linear-gradient(to bottom, rgba(8,8,16,0.95), transparent);
backdrop-filter: blur(0px);
}
.nav-logo {
height: 90px;
display: flex; align-items: center;
overflow: hidden;
}
.nav-logo img {
width: 100px;
height: auto;
display: block;
padding-top: 20px;
}
.nav-links {
display: flex; gap: 48px; list-style: none;
font-family: 'Syne', sans-serif;
font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links a {
color: var(--text-dim);
text-decoration: none;
transition: color 0.2s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute; bottom: -4px; left: 0;
width: 0; height: 1px;
background: linear-gradient(90deg, var(--pink), var(--blue));
transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
font-family: 'Syne', sans-serif;
font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
padding: 12px 28px;
border: 1px solid var(--border);
background: transparent;
color: var(--text);
text-decoration: none;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.nav-cta::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, var(--glow-pink), var(--glow-blue));
opacity: 0;
transition: opacity 0.3s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { border-color: var(--purple); }

/* HERO */
.hero {
min-height: 100vh;
display: flex; flex-direction: column;
justify-content: center; padding: 90px 56px 0;
position: relative; overflow: hidden;
}
.hero-bg-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
pointer-events: none;
animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(125,214,245,0.08), transparent 70%); top: -100px; right: 100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,167,195,0.07), transparent 70%); bottom: 50px; left: -100px; animation-delay: -3s; }
.orb3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(198,125,232,0.06), transparent 70%); top: 40%; right: 30%; animation-delay: -5s; }

@keyframes float {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.05); }
}

.hero-eyebrow {
font-family: 'DM Mono', monospace;
font-size: 11px; letter-spacing: 0.25em;
color: var(--blue);
text-transform: uppercase;
margin-bottom: 28px;
opacity: 0;
animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
font-size: clamp(64px, 9vw, 140px);
font-weight: 300;
line-height: 0.9;
letter-spacing: -0.02em;
margin-bottom: 40px;
opacity: 0;
animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero-title em {
font-style: italic;
background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 50%, var(--purple) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
max-width: 480px;
font-size: 18px;
font-weight: 300;
line-height: 1.7;
color: var(--text-dim);
margin-bottom: 56px;
opacity: 0;
animation: fadeUp 0.9s ease forwards 0.6s;
}
.hero-actions {
display: flex; gap: 24px; align-items: center;
opacity: 0;
animation: fadeUp 0.9s ease forwards 0.8s;
}
.btn-primary {
font-family: 'Syne', sans-serif;
font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
padding: 18px 44px;
background: linear-gradient(135deg, var(--pink), var(--blue));
color: var(--bg);
border: none;
text-decoration: none;
font-weight: 700;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.btn-primary::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, var(--blue), var(--purple));
opacity: 0;
transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
font-family: 'Syne', sans-serif;
font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
padding: 18px 44px;
border: 1px solid var(--border);
color: var(--text);
text-decoration: none;
transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

.hero-scroll {
position: absolute; bottom: 40px; right: 56px;
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.2em;
color: var(--text-dim);
writing-mode: vertical-rl;
display: flex; align-items: center; gap: 12px;
opacity: 0;
animation: fadeUp 1s ease forwards 1.2s;
}
.hero-scroll::before {
content: '';
width: 1px; height: 60px;
background: linear-gradient(to bottom, transparent, var(--purple));
}

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

/* SECTIONS COMMON */
section { padding: 120px 56px; }
.section-label {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
color: var(--purple);
margin-bottom: 16px;
display: flex; align-items: center; gap: 16px;
}
.section-label::before {
content: '';
width: 40px; height: 1px;
background: linear-gradient(90deg, var(--purple), transparent);
}
.section-title {
font-size: clamp(40px, 5vw, 72px);
font-weight: 300;
line-height: 1.1;
margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--pink); }

/* SERVICES */
#services { background: var(--bg2); }
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
margin-top: 72px;
border: 1px solid var(--border);
}
.service-card {
padding: 56px 44px;
background: var(--bg2);
border-right: 1px solid var(--border);
transition: background 0.4s;
position: relative;
overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--pink), var(--blue), var(--purple));
transform: scaleX(0);
transition: transform 0.4s ease;
transform-origin: left;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
font-family: 'DM Mono', monospace;
font-size: 11px; letter-spacing: 0.15em;
color: var(--text-dim);
margin-bottom: 32px;
}
.service-icon {
width: 48px; height: 48px;
margin-bottom: 28px;
opacity: 0.8;
}
.service-name {
font-family: 'Syne', sans-serif;
font-size: 20px; font-weight: 600;
margin-bottom: 16px;
color: var(--text);
}
.service-desc {
font-size: 16px; line-height: 1.7;
color: var(--text-dim); font-weight: 300;
}

/* PORTFOLIO */
#portfolio { background: var(--bg); }
.portfolio-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 16px;
margin-top: 72px;
}
.portfolio-item {
position: relative;
overflow: hidden;
cursor: none;
text-decoration: none;
display: block;
color: inherit;
}
.portfolio-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 5; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { grid-column: span 4; }
.portfolio-img {
width: 100%; aspect-ratio: 4/3;
object-fit: cover;
display: block;
}
.portfolio-item:nth-child(1) .portfolio-img { aspect-ratio: 16/9; height: 100%; }
.portfolio-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(8,8,16,0.95) 0%, rgba(8,8,16,0.3) 50%, transparent 100%);
opacity: 0;
transition: opacity 0.4s;
display: flex; flex-direction: column;
justify-content: flex-end; padding: 32px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.2em;
color: var(--blue);
text-transform: uppercase;
margin-bottom: 8px;
}
.portfolio-name {
font-family: 'Syne', sans-serif;
font-size: 20px; font-weight: 600;
color: var(--text);
margin-bottom: 12px;
}
.portfolio-link {
font-family: 'DM Mono', monospace;
font-size: 11px; letter-spacing: 0.15em;
color: var(--pink);
text-decoration: none;
text-transform: uppercase;
display: flex; align-items: center; gap: 8px;
transition: gap 0.2s;
}
.portfolio-link:hover { gap: 16px; }

/* Fake portfolio images using gradients */
.portfolio-mock {
width: 100%; height: 100%;
min-height: 280px;
display: flex; align-items: center; justify-content: center;
position: relative;
overflow: hidden;
}
.portfolio-item:nth-child(1) .portfolio-mock { min-height: 480px; }
.mock-1 { background: linear-gradient(135deg, #0d0d20 0%, #1a0d2e 40%, #0d1a2e 100%); }
.mock-2 { background: linear-gradient(135deg, #0d1a20 0%, #0d2030 100%); }
.mock-3 { background: linear-gradient(135deg, #1a0d1a 0%, #200d2e 100%); }
.mock-4 { background: linear-gradient(135deg, #0d0d1a 0%, #1a1028 100%); }
.mock-5 { background: linear-gradient(135deg, #1a100d 0%, #200d1a 100%); }
.mock-6 { background: linear-gradient(135deg, #0d1a1a 0%, #0d2020 100%); }
.mock-graphic {
position: absolute;
border-radius: 50%;
mix-blend-mode: screen;
}
.mock-shape {
position: absolute;
border: 1px solid;
opacity: 0.3;
}

/* SCHEDULE / BOOKING */
#schedule {
background: var(--bg3);
position: relative;
overflow: hidden;
}
#schedule::before {
content: '';
position: absolute; top: -200px; right: -200px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(125,214,245,0.05), transparent 70%);
border-radius: 50%;
}

.schedule-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
margin-top: 72px;
align-items: start;
}
.schedule-info p {
font-size: 18px; line-height: 1.8;
color: var(--text-dim); font-weight: 300;
margin-bottom: 40px;
}
.schedule-types {
display: flex; flex-direction: column; gap: 16px;
}
.schedule-type {
padding: 24px 28px;
border: 1px solid var(--border);
background: rgba(199,125,232,0.03);
display: flex; align-items: center; justify-content: space-between;
cursor: none;
transition: all 0.3s;
width: 100%;
text-align: left;
font-family: inherit;
}
.schedule-type:hover, .schedule-type.selected {
border-color: var(--purple);
background: rgba(199,125,232,0.08);
}
.schedule-type-info { display: flex; flex-direction: column; gap: 4px; }
.schedule-type-name {
font-family: 'Syne', sans-serif;
font-size: 15px; font-weight: 600;
}
.schedule-type-dur {
font-family: 'DM Mono', monospace;
font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em;
}
.schedule-type-price {
font-family: 'Syne', sans-serif;
font-size: 16px; font-weight: 700;
background: linear-gradient(135deg, var(--pink), var(--blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Calendar widget */
.calendar-widget {
background: var(--bg2);
border: 1px solid var(--border);
padding: 40px;
}
.cal-header {
display: flex; align-items: center; justify-content: space-between;
margin-bottom: 32px;
}
.cal-month {
font-family: 'Syne', sans-serif;
font-size: 18px; font-weight: 600;
}
.cal-nav {
display: flex; gap: 8px;
}
.cal-nav button {
width: 36px; height: 36px;
border: 1px solid var(--border);
background: transparent;
color: var(--text-dim);
cursor: none;
font-size: 16px;
transition: all 0.2s;
display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { border-color: var(--purple); color: var(--text); }
.cal-days-header {
display: grid; grid-template-columns: repeat(7, 1fr);
margin-bottom: 8px;
}
.cal-day-label {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.1em;
color: var(--text-dim);
text-align: center; padding: 8px;
text-transform: uppercase;
}
.cal-grid {
display: grid; grid-template-columns: repeat(7, 1fr);
gap: 4px;
}
.cal-day {
aspect-ratio: 1;
display: flex; align-items: center; justify-content: center;
font-family: 'Syne', sans-serif;
font-size: 13px;
cursor: none;
transition: all 0.2s;
position: relative;
border-radius: 2px;
}
.cal-day.empty { cursor: default; }
.cal-day.available:hover {
background: rgba(199,125,232,0.15);
color: var(--purple);
}
.cal-day.selected {
background: linear-gradient(135deg, var(--pink), var(--blue));
color: var(--bg);
font-weight: 700;
}
.cal-day.today { color: var(--blue); font-weight: 600; }
.cal-day.past { color: rgba(136,128,160,0.3); cursor: default; }
.cal-day.has-dot::after {
content: '';
position: absolute; bottom: 4px;
width: 4px; height: 4px;
background: var(--purple);
border-radius: 50%;
}

.time-slots {
margin-top: 24px;
display: none;
}
.time-slots.visible { display: block; }
.time-slots-label {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.2em;
color: var(--purple);
text-transform: uppercase;
margin-bottom: 16px;
}
.slots-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.slot {
padding: 10px;
border: 1px solid var(--border);
background: transparent;
color: var(--text-dim);
font-family: 'DM Mono', monospace;
font-size: 12px;
cursor: none;
transition: all 0.2s;
text-align: center;
}
.slot:hover, .slot.selected {
border-color: var(--blue);
color: var(--blue);
background: rgba(125,214,245,0.05);
}
.slot.unavailable {
opacity: 0.3; cursor: default;
text-decoration: line-through;
}
.book-btn {
width: 100%;
margin-top: 24px;
padding: 18px;
font-family: 'Syne', sans-serif;
font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
font-weight: 700;
background: linear-gradient(135deg, var(--pink), var(--blue));
border: none;
color: var(--bg);
cursor: none;
transition: opacity 0.3s;
display: none;
}
.book-btn.visible { display: block; }
.book-btn:hover { opacity: 0.85; }

/* CONTACT */
#contact { background: var(--bg); }
.contact-layout {
display: grid;
grid-template-columns: 5fr 7fr;
gap: 80px;
margin-top: 72px;
align-items: start;
}
.contact-info {
position: sticky; top: 120px;
}
.contact-info p {
font-size: 18px; line-height: 1.8;
color: var(--text-dim); font-weight: 300;
margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
display: flex; gap: 16px; align-items: flex-start;
}
.detail-label {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.2em;
color: var(--purple);
text-transform: uppercase;
width: 70px; flex-shrink: 0;
padding-top: 2px;
}
.detail-val {
font-size: 16px; font-weight: 300;
color: var(--text);
text-decoration: none;
transition: color 0.2s;
}
.detail-val:hover { color: var(--pink); }

.contact-socials {
display: flex; gap: 16px; margin-top: 48px;
}
.social-link {
width: 44px; height: 44px;
border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
color: var(--text-dim);
text-decoration: none;
font-family: 'DM Mono', monospace;
font-size: 11px;
transition: all 0.3s;
}
.social-link:hover {
border-color: var(--pink);
color: var(--pink);
background: rgba(244,167,195,0.05);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-label {
font-family: 'DM Mono', monospace;
font-size: 10px; letter-spacing: 0.2em;
color: var(--text-dim); text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
background: var(--bg3);
border: 1px solid var(--border);
color: var(--text);
padding: 16px 20px;
font-family: 'Cormorant Garamond', serif;
font-size: 16px;
transition: border-color 0.3s;
outline: none;
width: 100%;
}
.form-select {
cursor: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238880a0' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 20px center;
}
.form-textarea { resize: vertical; min-height: 160px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(136,128,160,0.4); }
.form-submit {
align-self: flex-start;
font-family: 'Syne', sans-serif;
font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
font-weight: 700;
padding: 18px 56px;
background: linear-gradient(135deg, var(--pink), var(--purple));
border: none;
color: var(--bg);
cursor: none;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-2px); }
.form-success {
display: none;
padding: 24px;
border: 1px solid rgba(125,214,245,0.3);
background: rgba(125,214,245,0.05);
text-align: center;
}
.form-success.visible { display: block; }
.form-success p {
font-family: 'Syne', sans-serif;
color: var(--blue); font-size: 14px; letter-spacing: 0.05em;
}

/* FOOTER */
footer {
padding: 60px 56px;
border-top: 1px solid var(--border);
background: var(--bg2);
display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { width: 120px; height: auto; opacity: 0.7; }
.footer-copy {
font-family: 'DM Mono', monospace;
font-size: 11px; letter-spacing: 0.1em;
color: var(--text-dim);
}
.footer-links {
display: flex; gap: 32px; list-style: none;
}
.footer-links a {
font-family: 'DM Mono', monospace;
font-size: 11px; letter-spacing: 0.1em;
color: var(--text-dim);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

/* MOBILE */
@media (max-width: 768px) {
nav { padding: 24px 24px; }
.nav-links { display: none; }
section { padding: 80px 24px; }
.hero { padding: 0 24px; }
.hero-title { font-size: 52px; }
.services-grid { grid-template-columns: 1fr; }
.service-card { border-right: none; border-bottom: 1px solid var(--border); }
.schedule-layout { grid-template-columns: 1fr; gap: 40px; }
.contact-layout { grid-template-columns: 1fr; gap: 40px; }
.contact-info { position: static; }
.portfolio-item:nth-child(1), .portfolio-item:nth-child(2), .portfolio-item:nth-child(3),
.portfolio-item:nth-child(4), .portfolio-item:nth-child(5), .portfolio-item:nth-child(6) {
    grid-column: span 12;
}
footer { flex-direction: column; gap: 24px; text-align: center; }
.footer-links { justify-content: center; }
.form-row { grid-template-columns: 1fr; }
.hero-actions { flex-direction: column; align-items: flex-start; }
}

/* SCROLL REVEAL */
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* Booking success state */
.booking-success {
display: none;
text-align: center;
padding: 60px 40px;
}
.booking-success.visible { display: block; }
.booking-success h3 {
font-family: 'Syne', sans-serif;
font-size: 24px; font-weight: 600;
background: linear-gradient(135deg, var(--pink), var(--blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
}
.booking-success p {
font-size: 16px; color: var(--text-dim); line-height: 1.7;
}
/* Calendar CTA nudge */
.cal-cta {
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(125,214,245,0.3);
  background: rgba(125,214,245,0.05);
  border-radius: 2px;
}
.cal-cta-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
}