* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
background: #08080b;
color: #f4f4f6;
font-family: Arial, Helvetica, sans-serif;
overflow-x: hidden;
}

a {
color: inherit;
text-decoration: none;
}

button,
input,
textarea,
select {
font: inherit;
}

.site-noise {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 999;
opacity: .035;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-grid {
position: fixed;
inset: 0;
pointer-events: none;
z-index: -1;
opacity: .18;
background-image:
linear-gradient(rgba(155,108,255,.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(155,108,255,.035) 1px, transparent 1px);
background-size: 60px 60px;
}

.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 76px;
padding: 0 5%;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 100;
background: rgba(8,8,11,.8);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo {
font-size: 1.25rem;
font-weight: 900;
letter-spacing: -.06em;
}

.logo span {
margin-left: 6px;
color: #85858f;
font-size: .65rem;
letter-spacing: .16em;
text-transform: uppercase;
}

.nav {
display: flex;
gap: 28px;
}

.nav a {
color: #85858f;
font-size: .68rem;
font-weight: 800;
letter-spacing: .13em;
transition: .25s;
}

.nav a:hover {
color: #b69cff;
}

.header-cta {
padding: 11px 17px;
border: 1px solid #9b6cff;
color: #b69cff;
font-size: .65rem;
font-weight: 900;
letter-spacing: .1em;
transition: .25s;
}

.header-cta:hover {
background: #9b6cff;
color: #08080b;
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 150px 8% 100px;
position: relative;
}

.hero::after {
content: "";
position: absolute;
width: 650px;
height: 650px;
right: -250px;
top: 15%;
background: radial-gradient(circle, rgba(155,108,255,.18), transparent 65%);
pointer-events: none;
}

.hero-content {
max-width: 900px;
}

.eyebrow,
.section-heading > span,
.sale-eyebrow {
color: #9b6cff;
font-size: .65rem;
font-weight: 900;
letter-spacing: .2em;
}

.hero h1 {
margin-top: 22px;
font-size: clamp(4rem, 10vw, 9.5rem);
line-height: .82;
letter-spacing: -.08em;
font-weight: 950;
}

.hero h1 span {
color: #85858f;
}

.hero p {
max-width: 540px;
margin-top: 30px;
color: #85858f;
font-size: 1rem;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 12px;
margin-top: 35px;
}

.primary-btn,
.secondary-btn {
display: inline-flex;
padding: 15px 22px;
font-size: .67rem;
font-weight: 900;
letter-spacing: .12em;
transition: .25s;
}

.primary-btn {
background: #9b6cff;
color: #08080b;
}

.primary-btn:hover {
background: #b69cff;
transform: translateY(-2px);
}

.secondary-btn {
border: 1px solid rgba(255,255,255,.12);
color: #b8b8c0;
}

.secondary-btn:hover {
border-color: #9b6cff;
color: #b69cff;
}

.sale-banner {
width: 84%;
margin: 0 auto 100px;
padding: 30px 35px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
border: 1px solid rgba(155,108,255,.28);
background: linear-gradient(120deg, rgba(155,108,255,.1), rgba(255,255,255,.025));
}

.sale-banner h2 {
margin-top: 7px;
font-size: clamp(1.3rem, 3vw, 2rem);
letter-spacing: -.04em;
}

.sale-banner p {
margin-top: 7px;
color: #85858f;
font-size: .8rem;
}

.sale-countdown {
display: flex;
gap: 12px;
}

.sale-countdown div {
min-width: 58px;
text-align: center;
}

.sale-countdown strong {
display: block;
font-size: 1.6rem;
color: #b69cff;
}

.sale-countdown span {
display: block;
margin-top: 4px;
color: #666671;
font-size: .48rem;
font-weight: 900;
letter-spacing: .12em;
}

.section {
width: 84%;
margin: 0 auto;
padding: 110px 0;
}

.section-heading {
margin-bottom: 55px;
}

.section-heading h2 {
margin-top: 14px;
font-size: clamp(2.5rem, 6vw, 5.5rem);
line-height: .9;
letter-spacing: -.07em;
}

.section-heading p {
margin-top: 18px;
color: #85858f;
font-size: .9rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.service-card {
padding: 35px;
min-height: 330px;
border: 1px solid rgba(255,255,255,.07);
background: rgba(255,255,255,.025);
transition: .3s;
}

.service-card:hover {
transform: translateY(-5px);
border-color: rgba(155,108,255,.35);
}

.service-card.featured-service {
border-color: rgba(155,108,255,.38);
box-shadow: 0 0 45px rgba(155,108,255,.06);
}

.service-number {
color: #9b6cff;
font-size: .65rem;
font-weight: 900;
}

.service-card h3 {
margin-top: 75px;
font-size: 1.4rem;
letter-spacing: -.04em;
}

.service-card p {
margin-top: 12px;
color: #85858f;
line-height: 1.6;
font-size: .8rem;
}

.service-card > strong {
display: block;
margin-top: 22px;
font-size: 1.3rem;
}

.service-card button {
margin-top: 22px;
padding: 10px 13px;
border: 1px solid rgba(155,108,255,.35);
background: transparent;
color: #b69cff;
cursor: pointer;
font-size: .58rem;
font-weight: 900;
letter-spacing: .1em;
}

.service-card button:hover {
background: #9b6cff;
color: #08080b;
}

.tutorial-video {
width: 72%;
max-width: 850px;
margin: 0 auto;
overflow: hidden;
border: 1px solid rgba(255,255,255,.08);
background: #101016;
}

.tutorial-video video {
width: 100%;
display: block;
}

.featured-presets {
position: absolute;
right: 8%;
bottom: 8%;
width: 42%;
z-index: 2;
}

.featured-label {
margin-bottom: 12px;
color: #9b6cff;
font-size: .55rem;
font-weight: 900;
letter-spacing: .16em;
}

.featured-presets-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}

.featured-presets-grid .preset-card {
width: 100%;
}

.presets-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}

.preset-card {
position: relative;
padding: 14px;
overflow: hidden;
cursor: pointer;
border: 1px solid rgba(255,255,255,.07);
background: linear-gradient(150deg, #111117, #0c0c10);
transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.preset-card:hover {
transform: translateY(-6px);
border-color: rgba(155,108,255,.4);
box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.preset-image {
width: 86%;
margin: 2% auto 0;
overflow: hidden;
aspect-ratio: 1 / 1;
background: #08080b;
}

.preset-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform .45s ease;
}

.preset-card:hover .preset-image img {
transform: scale(1.035);
}

.preset-info {
padding: 19px 7px 8px;
}

.preset-tag {
color: #9b6cff;
font-size: .52rem;
font-weight: 900;
letter-spacing: .15em;
}

.preset-info h3 {
margin-top: 7px;
font-size: .95rem;
letter-spacing: -.03em;
}

.preset-info p {
margin-top: 5px;
color: #777780;
font-size: .58rem;
font-weight: 800;
letter-spacing: .08em;
}

.preset-bottom {
min-height: 43px;
padding: 12px 7px 5px;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid rgba(255,255,255,.07);
}

.preset-bottom strong {
font-size: .78rem;
}

.preset-bottom > span {
color: #85858f;
font-size: .5rem;
font-weight: 900;
letter-spacing: .08em;
}

.preset-bottom .old-price {
color: #85858f;
text-decoration: line-through;
opacity: .45;
margin-right: 6px;
}

.preset-bottom .sale-price {
color: #ff3b3b;
font-weight: 900;
}

.sale-label {
display: inline-block;
margin-left: 6px;
padding: 3px 5px;
background: #ff3b3b;
color: #000;
font-size: .42rem;
font-weight: 900;
letter-spacing: .1em;
vertical-align: middle;
}

.coming-soon-card {
opacity: .7;
}

.coming-soon-card .preset-bottom strong {
color: #85858f;
font-size: .6rem;
letter-spacing: .08em;
}

.audio-preview {
padding: 10px 7px 12px;
cursor: default;
}

.audio-preview-label {
margin-bottom: 8px;
color: #666671;
font-size: .48rem;
font-weight: 900;
letter-spacing: .16em;
}

.custom-audio {
display: flex;
align-items: center;
gap: 9px;
min-width: 0;
padding: 8px 9px;
border: 1px solid rgba(255,255,255,.07);
border-radius: 8px;
background: rgba(255,255,255,.025);
transition:
border-color .25s ease,
background .25s ease,
box-shadow .25s ease;
}

.audio-preview:hover .custom-audio {
border-color: rgba(155,108,255,.24);
background: rgba(155,108,255,.035);
}

.audio-play {
width: 30px;
height: 30px;
flex: 0 0 30px;
display: grid;
place-items: center;
padding: 0;
border: 1px solid rgba(155,108,255,.5);
border-radius: 50%;
background: rgba(155,108,255,.1);
color: #b69cff;
cursor: pointer;
transition: .2s ease;
}

.audio-play:hover {
background: #9b6cff;
color: #08080b;
transform: scale(1.06);
}

.play-icon {
margin-left: 1px;
font-size: .55rem;
}

.audio-preview.is-playing .audio-play {
background: #9b6cff;
color: #08080b;
}

.audio-preview.is-playing .play-icon {
font-size: 0;
}

.audio-preview.is-playing .play-icon::after {
content: "Ⅱ";
font-size: .65rem;
font-weight: 900;
}

.audio-main {
min-width: 0;
flex: 1;
}

.audio-progress {
position: relative;
height: 4px;
width: 100%;
overflow: hidden;
border-radius: 99px;
background: rgba(255,255,255,.1);
cursor: pointer;
}

.audio-fill {
width: 0%;
height: 100%;
border-radius: inherit;
background: #9b6cff;
box-shadow: 0 0 9px rgba(155,108,255,.5);
transition: width .08s linear;
}

.audio-meta {
margin-top: 6px;
display: flex;
justify-content: space-between;
color: #666671;
font-size: .46rem;
font-weight: 800;
font-variant-numeric: tabular-nums;
}

.volume-control {
width: 42px;
flex: 0 0 42px;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
}

.volume-icon {
width: 15px;
height: 15px;
display: grid;
place-items: center;
color: #85858f;
font-size: .42rem;
border: 1px solid rgba(155,108,255,.38);
border-radius: 50%;
transition: .2s ease;
}

.volume-control:hover .volume-icon {
color: #b69cff;
border-color: #9b6cff;
box-shadow: 0 0 8px rgba(155,108,255,.25);
}

.volume-slider {
width: 32px;
height: 3px;
appearance: none;
-webkit-appearance: none;
border-radius: 99px;
outline: none;
cursor: pointer;
background: rgba(255,255,255,.1);
}

.volume-slider::-webkit-slider-thumb {
appearance: none;
-webkit-appearance: none;
width: 9px;
height: 9px;
border-radius: 50%;
background: #9b6cff;
border: 0;
box-shadow: 0 0 7px rgba(155,108,255,.45);
cursor: pointer;
}

.volume-slider::-moz-range-thumb {
width: 9px;
height: 9px;
border: 0;
border-radius: 50%;
background: #9b6cff;
box-shadow: 0 0 7px rgba(155,108,255,.45);
cursor: pointer;
}

.volume-slider:focus {
outline: none;
}

.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.why-card {
padding: 35px;
border-top: 1px solid rgba(155,108,255,.35);
background: rgba(255,255,255,.025);
}

.why-card > span {
color: #9b6cff;
font-size: .6rem;
font-weight: 900;
}

.why-card h3 {
margin-top: 50px;
font-size: 1rem;
}

.why-card p {
margin-top: 12px;
color: #85858f;
font-size: .78rem;
line-height: 1.65;
}

.about {
border-top: 1px solid rgba(255,255,255,.06);
}

.about-content {
max-width: 800px;
}

.about-content > p {
margin-top: 25px;
color: #85858f;
font-size: 1rem;
line-height: 1.8;
}

.booking {
display: grid;
grid-template-columns: .8fr 1.2fr;
gap: 80px;
align-items: start;
}

.booking-form {
padding: 35px;
border: 1px solid rgba(255,255,255,.08);
background: rgba(255,255,255,.025);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: #85858f;
font-size: .55rem;
font-weight: 900;
letter-spacing: .13em;
}

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 14px;
outline: none;
border: 1px solid rgba(255,255,255,.08);
background: #0c0c10;
color: #f4f4f6;
resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: rgba(155,108,255,.55);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: #55555f;
}

.submit-btn {
width: 100%;
padding: 15px;
border: 0;
background: #9b6cff;
color: #08080b;
cursor: pointer;
font-size: .65rem;
font-weight: 900;
letter-spacing: .13em;
transition: .25s;
}

.submit-btn:hover {
background: #b69cff;
}

.final-cta {
width: 84%;
margin: 40px auto 100px;
padding: 80px 7%;
text-align: center;
border: 1px solid rgba(155,108,255,.22);
background: radial-gradient(circle at center, rgba(155,108,255,.1), transparent 65%);
}

.final-cta span {
color: #9b6cff;
font-size: .6rem;
font-weight: 900;
letter-spacing: .18em;
}

.final-cta h2 {
margin: 20px 0 30px;
font-size: clamp(3rem, 7vw, 7rem);
line-height: .85;
letter-spacing: -.08em;
}

.final-cta a {
color: #b69cff;
font-size: .65rem;
font-weight: 900;
letter-spacing: .13em;
}

.footer {
padding: 30px 5%;
display: flex;
justify-content: space-between;
color: #55555f;
font-size: .55rem;
font-weight: 800;
letter-spacing: .08em;
}


/* MODAL */

.preset-modal {
position: fixed;
inset: 0;
z-index: 500;
display: none;
}

.preset-modal.active {
display: block;
}

.preset-modal-backdrop {
position: absolute;
inset: 0;
background: rgba(0,0,0,.78);
backdrop-filter: blur(12px);
}

.preset-modal-content {
position: absolute;
width: min(560px, 92%);
max-height: 90vh;
overflow-y: auto;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding: 38px;
border: 1px solid rgba(155,108,255,.28);
background: #101016;
box-shadow: 0 30px 100px rgba(0,0,0,.65);
}

.preset-modal-close {
position: absolute;
top: 15px;
right: 17px;
border: 0;
background: transparent;
color: #85858f;
cursor: pointer;
font-size: 1.8rem;
line-height: 1;
padding: 0;
}

.preset-modal-close:hover {
color: #fff;
}

.modal-eyebrow {
display: block;
color: #9b6cff;
font-size: .55rem;
font-weight: 900;
letter-spacing: .16em;
}

.preset-modal-content h2 {
margin-top: 12px;
font-size: 2rem;
line-height: 1.05;
letter-spacing: -.05em;
}

.preset-modal-content > p {
margin-top: 10px;
color: #85858f;
font-size: .8rem;
line-height: 1.6;
}


/* PRESET PACK OPTIONS */

#presetOptions {
width: 100%;
margin-top: 25px;
display: flex;
flex-direction: column;
gap: 9px;
}

#presetOptions .preset-option {
width: 100%;
min-height: 62px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 16px;
margin: 0;
border: 1px solid rgba(255,255,255,.07);
background: rgba(255,255,255,.025);
}

#presetOptions .preset-option:hover {
border-color: rgba(155,108,255,.35);
background: rgba(155,108,255,.035);
}

#presetOptions .preset-option-info {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 5px;
min-width: 0;
flex: 1;
}

#presetOptions .preset-option-label {
display: block;
margin: 0;
padding: 0;
color: #f4f4f6;
font-size: .75rem;
font-weight: 900;
line-height: 1.2;
letter-spacing: 0;
}

#presetOptions .preset-option-price {
display: block;
margin: 0;
padding: 0;
color: #b69cff;
font-size: .65rem;
font-weight: 800;
line-height: 1;
}

#presetOptions .preset-option a {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
padding: 9px 13px;
margin: 0;
border: 1px solid #9b6cff;
background: transparent;
color: #b69cff;
font-size: .55rem;
font-weight: 900;
line-height: 1;
letter-spacing: .08em;
text-decoration: none;
white-space: nowrap;
transition: background .2s ease, color .2s ease, border-color .2s ease;
}

#presetOptions .preset-option a:hover {
background: #9b6cff;
border-color: #9b6cff;
color: #08080b;
}

#presetOptions .preset-option.full-pack {
border-color: rgba(155,108,255,.4);
background: rgba(155,108,255,.06);
}

#presetOptions .preset-option.full-pack .preset-option-label {
color: #b69cff;
}

#presetOptions .preset-option.coming-soon {
justify-content: space-between;
}

#presetOptions .preset-coming-soon {
flex: 0 0 auto;
padding: 9px 12px;
border: 1px solid rgba(155,108,255,.35);
background: rgba(155,108,255,.08);
color: #b69cff;
font-size: .55rem;
font-weight: 900;
line-height: 1;
letter-spacing: .1em;
}


/* REVEAL */

.reveal {
opacity: 0;
transform: translateY(18px);
transition: opacity .65s ease, transform .65s ease;
}

.revealed {
opacity: 1;
transform: translateY(0);
}


@media (max-width: 1000px) {

.nav {
display: none;
}

.featured-presets {
position: relative;
right: auto;
bottom: auto;
width: 84%;
margin: 30px auto 0;
}

.featured-presets-grid {
grid-template-columns: repeat(2, 1fr);
}

.presets-grid {
grid-template-columns: repeat(2, 1fr);
}

.services-grid,
.why-grid {
grid-template-columns: 1fr;
}

.booking {
grid-template-columns: 1fr;
gap: 35px;
}

}


@media (max-width: 600px) {

.site-header {
padding: 0 5%;
}

.header-cta {
padding: 9px 11px;
}

.hero {
padding: 130px 7% 80px;
}

.hero h1 {
font-size: 4rem;
}

.hero-buttons {
flex-direction: column;
align-items: stretch;
}

.sale-banner {
width: 90%;
padding: 25px;
flex-direction: column;
align-items: flex-start;
}

.sale-countdown {
width: 100%;
justify-content: space-between;
}

.section {
width: 90%;
padding: 80px 0;
}

.featured-presets {
width: 90%;
}

.featured-presets-grid {
grid-template-columns: 1fr;
}

.presets-grid {
grid-template-columns: 1fr;
}

.form-row {
grid-template-columns: 1fr;
}

.booking-form {
padding: 22px;
}

.final-cta {
width: 90%;
padding: 60px 20px;
}

.footer {
flex-direction: column;
gap: 10px;
}

.volume-control {
width: 38px;
flex-basis: 38px;
}

.volume-slider {
width: 27px;
}


/* MOBILE MODAL */

.preset-modal-content {
width: 92%;
padding: 28px 20px;
}

.preset-modal-content h2 {
font-size: 1.6rem;
}

#presetOptions {
gap: 8px;
margin-top: 22px;
}

#presetOptions .preset-option {
min-height: 60px;
padding: 13px;
gap: 10px;
}

#presetOptions .preset-option-label {
font-size: .62rem;
}

#presetOptions .preset-option-price {
font-size: .55rem;
}

#presetOptions .preset-option a {
padding: 8px 10px;
font-size: .43rem;
}

}
