*,
::before,
::after {
box-sizing: border-box
}

body {
margin: 0;
padding: 0;
scrollbar-gutter: stable;
min-height: 100vh;
font-family: 'PT Sans', sans-serif
}

html {
scroll-behavior: auto
}

:focus {
outline: none;
filter: invert(1)
}

.page-header {
position: relative;
background: #fff;
border-bottom: 2px solid #8E69F5;
box-shadow: 1px 4px 20px 0 #8e69f517;
overflow: hidden
}

.page-header::before {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #8E69F5 0%, #BD5708 100%);
pointer-events: none
}

.utility-bar {
background: #EFF5FF;
padding: 8px 24px;
display: flex;
align-items: center;
justify-content: flex-end;
gap: 24px;
max-width: 1500px;
margin: 0 auto
}

.utility-bar__contact {
display: flex;
align-items: center;
gap: 4px;
font-size: 15px;
line-height: 1.6;
color: #2d2d2d;
text-decoration: none
}

.utility-bar__contact svg {
flex-shrink: 0
}

@media (max-width: 768px) {
.utility-bar {
justify-content: center;
gap: 12px;
flex-wrap: wrap
}
}

.brand-row {
display: flex;
flex-direction: column;
align-items: center;
padding: 24px 24px 0;
max-width: 1500px;
margin: 0 auto;
gap: 8px
}

.logo-frame {
background: #ffffffd9;
border-radius: 6px;
padding: 8px;
border: 1px solid #8e69f52e;
box-shadow: 1px 3px 4px 0 #8e69f50f;
display: flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px
}

.logo-frame img {
width: 65px;
height: 65px;
object-fit: contain;
display: block
}

.brand-name {
font-size: 24px;
font-weight: 700;
line-height: 1.2;
color: #1e1240;
letter-spacing: 0;
text-align: center
}

.brand-tagline {
font-size: 15px;
line-height: 1.6;
color: #5a4a7a;
text-align: center;
max-width: 560px
}

.primary-nav {
max-width: 1500px;
margin: 0 auto;
padding: 12px 24px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
flex-wrap: wrap
}

.primary-nav__item {
position: relative;
display: inline-block;
overflow: hidden;
height: 44px;
border-radius: 2px;
border: 1px solid #8e69f559
}

.primary-nav__item a {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 0 24px;
font-size: 15px;
font-weight: 700;
line-height: 1.2;
color: #2d1a6e;
text-decoration: none;
position: relative;
z-index: 1
}

@media (min-width: 1024px) {
.primary-nav__item a {
transition: color .2s ease-out, background .25s ease-out
}

.primary-nav__item a:hover {
background: #8E69F5;
color: #fff;
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

@media (max-width: 360px) {
.utility-bar {
padding: 8px 12px
}

.brand-row {
padding: 24px 12px 0
}

.primary-nav {
padding: 12px;
gap: 4px
}

.primary-nav__item a {
padding: 0 12px;
font-size: 15px
}
}

.page-footer {
background: #1e1240;
border-top: 2px solid #8E69F5;
padding: 24px
}

.footer-row {
max-width: 1500px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px
}

.footer-copy {
font-size: 15px;
line-height: 1.6;
color: #c8b8f5
}

.footer-links {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap
}

.footer-links a {
font-size: 15px;
line-height: 1.6;
color: #c8b8f5;
text-decoration: none;
border-bottom: 1px solid #c8b8f54d
}

@media (min-width: 1024px) {
.footer-links a {
transition: color .2s ease-out, border-color .2s ease-out
}

.footer-links a:hover {
color: #fff;
border-color: #fff
}
}

.footer-trust {
display: flex;
align-items: center;
gap: 8px
}

.trust-dot {
width: 8px;
height: 8px;
border-radius: 0;
background: #BD5708;
display: inline-block;
transform: rotate(45deg)
}

.trust-label {
font-size: 15px;
line-height: 1.6;
color: #8E69F5;
font-weight: 700
}

@media (max-width: 768px) {
.footer-row {
flex-direction: column;
align-items: flex-start
}
}

.cookie-notice {
position: fixed;
top: 24px;
left: 24px;
z-index: 1000;
background: #fff;
border-radius: 6px;
box-shadow: 1px 12px 60px 0 #8e69f51f;
border: 1px solid #8e69f533;
padding: 24px;
max-width: 340px;
width: calc(100vw - 48px)
}

.cookie-notice__desc {
font-size: 15px;
line-height: 1.6;
color: #2d2d2d;
margin-bottom: 8px
}

.cookie-notice__headline {
font-size: 15px;
font-weight: 700;
line-height: 1.2;
color: #1e1240;
margin-bottom: 12px
}

.cookie-notice__optout {
font-size: 15px;
line-height: 1.6;
color: #5a4a7a;
margin-bottom: 12px
}

.cookie-notice__optout label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer
}

.cookie-notice__policy {
font-size: 15px;
line-height: 1.6;
color: #8E69F5;
text-decoration: underline;
display: block;
margin-bottom: 12px
}

.cookie-notice__buttons {
display: flex;
gap: 8px
}

.cookie-notice__buttons button {
flex: 1;
height: 44px;
border-radius: 2px;
font-size: 15px;
font-weight: 700;
cursor: pointer;
border: 1px solid #8E69F5;
background: transparent;
color: #2d1a6e
}

@media (min-width: 1024px) {
.cookie-notice__buttons button {
transition: box-shadow .2s ease-out, background .25s ease-out, color .2s ease-out
}

.cookie-notice__buttons button:hover {
box-shadow: 1px 4px 20px 0 #8e69f517;
background: #8E69F5;
color: #fff
}
}

@media (max-width: 360px) {
.cookie-notice {
left: 12px;
top: 12px;
width: calc(100vw - 24px);
padding: 12px
}
}

.agreement-text {
max-width: 1500px;
margin: 0 auto;
padding: 80px 40px
}

.agreement-text h1 {
font-size: 41px;
line-height: 1.2;
color: #2d1f6e;
margin-bottom: 24px;
margin-top: 0
}

.agreement-text h2 {
font-size: 24px;
line-height: 1.2;
color: #2d1f6e;
margin-top: 40px;
margin-bottom: 12px
}

.agreement-text h3,
.agreement-text h4,
.agreement-text h5,
.agreement-text h6 {
font-size: 15px;
line-height: 1.6;
color: #2d1f6e;
margin-top: 24px;
margin-bottom: 8px
}

.agreement-text h3 {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 0
}

.agreement-text p {
font-size: 15px;
line-height: 2;
color: #2c2c3a;
margin-top: 0;
margin-bottom: 12px;
max-width: 72ch
}

.agreement-text ul,
.agreement-text ol {
font-size: 15px;
line-height: 2;
color: #2c2c3a;
margin-top: 0;
margin-bottom: 12px;
padding-left: 24px;
max-width: 72ch
}

.agreement-text li {
margin-bottom: 4px
}

.agreement-text li::marker {
color: #8E69F5
}

.agreement-text strong,
.agreement-text b {
font-weight: 700;
color: #1e1a3a
}

.agreement-text em,
.agreement-text i {
font-style: italic;
color: #3a3050
}

.agreement-text a {
color: #8E69F5;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
transition: color .2s ease-out, text-decoration-color .25s ease-out
}

.agreement-text a:hover {
color: #BD5708;
text-decoration-color: #BD5708
}

.agreement-text hr {
border: none;
border-top: 1px solid #d4cef5;
margin-top: 40px;
margin-bottom: 40px
}

@media (max-width: 768px) {
.agreement-text {
padding: 40px 24px
}

.agreement-text h1 {
font-size: 24px
}

.agreement-text h2 {
font-size: 15px
}

.agreement-text p,
.agreement-text ul,
.agreement-text ol {
max-width: 100%
}
}

@media (max-width: 360px) {
.agreement-text {
padding: 24px 12px
}
}

.debut {
max-width: 100%;
overflow-x: hidden
}

.debut .page-limiter {
max-width: 1500px;
margin-left: auto;
margin-right: auto;
padding-left: 24px;
padding-right: 24px
}

@keyframes elastic-in {
0% {
opacity: 0;
transform: scale(0.88)
}

60% {
opacity: 1;
transform: scale(1.03)
}

80% {
transform: scale(0.98)
}

100% {
transform: scale(1)
}
}

@keyframes rotate-slow {
from {
transform: rotate(0deg)
}

to {
transform: rotate(360deg)
}
}

.debut ::selection {
background: linear-gradient(90deg, #8E69F5, #BD5708);
color: #fff
}

.debut .title-band {
background: linear-gradient(158deg, #2a1a4e 0%, #1c0f2e 55%, #3a1a08 100%);
padding: 40px 0;
position: relative
}

.debut .title-band .circles-bg {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none
}

.debut .title-band .circle-deco {
position: absolute;
border-radius: 50%;
border: 1px solid #8e69f51f
}

.debut .title-band .circle-deco.large {
width: 480px;
height: 480px;
top: -180px;
right: -120px;
border-color: #8e69f514
}

.debut .title-band .circle-deco.medium {
width: 240px;
height: 240px;
bottom: -80px;
left: 8%;
border-color: #bd57081a
}

.debut .title-band .circle-deco.small {
width: 120px;
height: 120px;
top: 24px;
left: 30%;
border-color: #8e69f517
}

.debut .title-strip {
display: flex;
flex-direction: row;
align-items: center;
gap: 40px
}

.debut .title-image-col {
flex: 0 0 260px;
position: relative
}

.debut .title-image-col img {
width: 260px;
height: 200px;
object-fit: cover;
object-position: center;
display: block;
filter: grayscale(100%);
border-radius: 6px
}

.debut .title-text-col {
flex: 1 1 0
}

.debut .title-eyebrow {
font-size: 15px;
line-height: 1.6;
color: #8e69f5d9;
margin-bottom: 8px;
display: block
}

.debut .title-heading {
font-size: 41px;
line-height: 1.2;
color: #f5f0ff;
margin: 0 0 12px;
font-weight: 700
}

.debut .title-heading sup {
font-size: 15px;
color: #BD5708;
vertical-align: super;
font-weight: 400
}

.debut .title-sub {
font-size: 15px;
line-height: 1.6;
color: #f5f0ffb8;
max-width: 520px;
margin: 0
}

.debut .approach-section {
background: #fff;
padding: 80px 0;
animation: elastic-in .45s ease-out both;
animation-delay: .1s
}

.debut .approach-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start
}

.debut .approach-left {
position: relative
}

.debut .approach-image-wrap {
position: relative;
display: inline-block;
width: 100%
}

.debut .approach-image-wrap img {
width: 100%;
height: 360px;
object-fit: cover;
object-position: center;
border-radius: 6px;
display: block
}

.debut .approach-badge {
position: absolute;
bottom: -12px;
right: -12px;
background: #fff;
border: 2px solid #8E69F5;
border-radius: 6px;
padding: 12px;
box-shadow: 1px 4px 20px 0 #8e69f517;
max-width: 180px
}

.debut .approach-badge-label {
font-size: 15px;
line-height: 1.6;
color: #2a1a4e;
font-weight: 600;
display: block
}

.debut .approach-badge-sub {
font-size: 15px;
line-height: 1.2;
color: #BD5708;
display: block
}

.debut .approach-right {
padding-top: 8px
}

.debut .section-label {
font-size: 15px;
line-height: 1.6;
color: #BD5708;
font-weight: 600;
display: block;
margin-bottom: 8px
}

.debut .approach-heading {
font-size: 41px;
line-height: 1.2;
color: #1a0f30;
font-weight: 300;
margin: 0 0 24px;
letter-spacing: .01em
}

.debut .approach-body {
font-size: 15px;
line-height: 1.6;
color: #3a2e55;
margin: 0 0 24px
}

.debut .pull-quote {
float: right;
width: 44%;
margin: 0 0 12px 24px;
font-size: 24px;
line-height: 1.2;
color: #8E69F5;
font-weight: 300;
border-left: 3px solid #8E69F5;
border-top: 1px solid #8e69f533;
padding: 12px 0 12px 12px
}

.debut .step-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px
}

.debut .step-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
font-size: 15px;
line-height: 1.6;
color: #3a2e55
}

.debut .step-num {
flex: 0 0 28px;
height: 28px;
border-radius: 50%;
background: #EFF5FF;
border: 1.5px solid #8E69F5;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
color: #8E69F5;
font-weight: 600;
margin-top: 2px
}

.debut .tiers-section {
background: #EFF5FF;
padding: 80px 0;
position: relative
}

.debut .tiers-section .geo-rotate {
position: absolute;
top: 40px;
right: 40px;
width: 120px;
height: 120px;
pointer-events: none;
animation: rotate-slow 18s linear infinite;
opacity: .07
}

.debut .tiers-top {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 40px;
gap: 24px
}

.debut .tiers-heading {
font-size: 41px;
line-height: 1.2;
color: #1a0f30;
font-weight: 300;
margin: 0;
max-width: 480px
}

.debut .tiers-note {
font-size: 15px;
line-height: 1.6;
color: #5a4a7a;
max-width: 320px;
margin: 0
}

.debut .tiers-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px
}

.debut .tier-card {
background: #fff;
border-radius: 6px;
padding: 24px;
position: relative;
box-shadow: 1px 3px 4px 0 #8e69f50f;
transition: box-shadow .25s ease-out, transform .2s ease-out
}

.debut .tier-card:hover {
box-shadow: 1px 12px 60px 0 #8e69f51f;
transform: translateY(-4px)
}

.debut .tier-card.featured {
border: 2px solid #8E69F5;
box-shadow: 8px 12px 0 0 #8e69f52e 1px 4px 20px 0 #8e69f517
}

.debut .tier-card.featured:hover {
box-shadow: 10px 16px 0 0 #8e69f538 1px 12px 60px 0 #8e69f51f
}

.debut .tier-tag {
position: absolute;
top: -10px;
left: 24px;
background: #8E69F5;
color: #fff;
font-size: 15px;
line-height: 1.2;
padding: 2px 12px;
border-radius: 2px
}

.debut .tier-name {
font-size: 24px;
line-height: 1.2;
color: #1a0f30;
font-weight: 600;
margin: 0 0 8px
}

.debut .tier-price {
font-size: 41px;
line-height: 1.2;
color: #8E69F5;
font-weight: 700;
margin: 0 0 4px
}

.debut .tier-price span {
font-size: 15px;
color: #5a4a7a;
font-weight: 400
}

.debut .tier-desc {
font-size: 15px;
line-height: 1.6;
color: #5a4a7a;
margin: 0 0 24px
}

.debut .tier-features {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px
}

.debut .tier-features li {
font-size: 15px;
line-height: 1.6;
color: #3a2e55;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px
}

.debut .tier-features li .feat-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #8E69F5;
flex-shrink: 0;
margin-top: 8px
}

.debut .tier-features li.muted .feat-dot {
background: #c8c0d8
}

.debut .tier-features li.muted {
color: #9a90b0
}

.debut .tier-btn {
display: block;
width: 100%;
margin-top: 24px;
padding: 12px 24px;
border-radius: 2px;
border: 1.5px solid #8E69F5;
background: transparent;
color: #8E69F5;
font-size: 15px;
line-height: 1.6;
cursor: pointer;
text-align: center;
transition: box-shadow .2s ease-out, background .18s ease-out, color .18s ease-out
}

.debut .tier-btn:hover,
.debut .tier-btn:focus {
background: #8E69F5;
color: #fff;
box-shadow: 1px 4px 20px 0 #8e69f538;
outline: none
}

.debut .tier-card.featured .tier-btn {
background: #8E69F5;
color: #fff
}

.debut .tier-card.featured .tier-btn:hover {
background: #7a56e0;
box-shadow: 1px 12px 60px 0 #8e69f538
}

.debut .voices-section {
background: #fff;
padding: 80px 0
}

.debut .voices-heading {
font-size: 41px;
line-height: 1.2;
color: #1a0f30;
font-weight: 300;
margin: 0 0 40px;
max-width: 560px
}

.debut .voices-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start
}

.debut .voice-card {
display: flex;
flex-direction: row;
gap: 24px;
align-items: flex-start;
padding: 24px;
border-radius: 6px;
border: 1px solid #8e69f526;
border-top: 3px solid #8e69f54d;
box-shadow: 1px 3px 4px 0 #8e69f50f;
transition: box-shadow .28s ease-out
}

.debut .voice-card:hover {
box-shadow: 1px 4px 20px 0 #8e69f517
}

.debut .voice-portrait {
flex: 0 0 64px
}

.debut .voice-portrait img {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
object-position: top;
display: block;
border: 2px solid #8e69f540
}

.debut .voice-portrait .no-portrait {
width: 64px;
height: 64px;
border-radius: 50%;
background: #EFF5FF;
border: 2px solid #8e69f540;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #8E69F5;
font-weight: 600
}

.debut .voice-body {
flex: 1 1 0
}

.debut .voice-quote {
font-size: 15px;
line-height: 1.6;
color: #3a2e55;
margin: 0 0 12px;
font-style: italic
}

.debut .voice-name {
font-size: 15px;
line-height: 1.2;
color: #1a0f30;
font-weight: 600;
margin: 0
}

.debut .voice-role {
font-size: 15px;
line-height: 1.6;
color: #BD5708;
margin: 0
}

.debut .voices-image-col {
display: flex;
flex-direction: column;
gap: 24px
}

.debut .voices-img-wrap {
position: relative;
border-radius: 6px;
overflow: hidden
}

.debut .voices-img-wrap img {
width: 100%;
height: 220px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 6px
}

.debut .voices-img-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #1a0f30b8;
padding: 8px 12px;
font-size: 15px;
line-height: 1.6;
color: #f5f0ff
}

.debut .environment-section {
background: linear-gradient(158deg, #1c0f2e 0%, #2a1a4e 60%, #1c0f2e 100%);
padding: 80px 0;
position: relative
}

.debut .environment-section .frosted-panel {
background: #ffffff12;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid #ffffff1f;
border-radius: 6px;
padding: 40px
}

.debut .env-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center
}

.debut .env-heading {
font-size: 41px;
line-height: 1.2;
color: #f5f0ff;
font-weight: 300;
margin: 0 0 24px
}

.debut .env-body {
font-size: 15px;
line-height: 1.6;
color: #f5f0ffc7;
margin: 0 0 24px
}

.debut .env-stats {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap
}

.debut .env-stat {
display: flex;
flex-direction: column;
gap: 4px
}

.debut .env-stat-num {
font-size: 41px;
line-height: 1.2;
color: #8E69F5;
font-weight: 700
}

.debut .env-stat-label {
font-size: 15px;
line-height: 1.6;
color: #f5f0ffa6
}

.debut .env-right {
display: flex;
flex-direction: column;
gap: 12px
}

.debut .env-image-wrap {
position: relative;
border-radius: 6px;
overflow: hidden
}

.debut .env-image-wrap img {
width: 100%;
height: 260px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 6px;
filter: grayscale(30%)
}

.debut .env-pill-row {
display: flex;
flex-direction: row;
gap: 8px;
flex-wrap: wrap
}

.debut .env-pill {
font-size: 15px;
line-height: 1.6;
color: #f5f0ff;
border: 1px solid #8e69f566;
border-radius: 20px;
padding: 4px 12px;
background: #8e69f51f;
transition: background .22s ease-out, border-color .22s ease-out
}

.debut .env-pill:hover {
background: #8e69f547;
border-color: #8e69f5b3
}

.debut .scallop-down {
display: block;
width: 100%;
height: 24px;
overflow: hidden;
line-height: 0
}

.debut .scallop-down svg,
.debut .scallop-up svg {
display: block;
width: 100%;
height: 24px
}

.debut .scallop-up {
display: block;
width: 100%;
height: 24px;
overflow: hidden;
line-height: 0
}

@media (max-width: 1024px) {
.debut .approach-grid {
grid-template-columns: 1fr
}

.debut .tiers-grid {
grid-template-columns: 1fr 1fr
}

.debut .voices-grid {
grid-template-columns: 1fr
}

.debut .env-layout {
grid-template-columns: 1fr
}

.debut .title-strip {
flex-direction: column;
align-items: flex-start
}

.debut .title-image-col {
flex: 0 0 auto;
width: 100%
}

.debut .title-image-col img {
width: 100%;
height: 180px
}
}

@media (max-width: 768px) {
.debut .tiers-grid {
grid-template-columns: 1fr
}

.debut .tiers-top {
flex-direction: column;
align-items: flex-start
}

.debut .title-heading {
font-size: 24px
}

.debut .approach-heading,
.debut .tiers-heading,
.debut .voices-heading,
.debut .env-heading {
font-size: 24px
}

.debut .pull-quote {
float: none;
width: 100%;
margin: 0 0 12px;
font-size: 15px
}

.debut .env-stats {
gap: 12px
}

.debut .environment-section .frosted-panel {
padding: 24px
}
}

@media (max-width: 360px) {
.debut .page-limiter {
padding-left: 12px;
padding-right: 12px
}

.debut .voice-card {
flex-direction: column
}

.debut .env-stat-num {
font-size: 24px
}
}

@media (min-width: 769px) {
.debut .tier-card {
transition: box-shadow .25s ease-out, transform .2s ease-out
}

.debut .voice-card {
transition: box-shadow .28s ease-out
}

.debut .env-pill {
transition: background .22s ease-out, border-color .22s ease-out
}

.debut .tier-btn {
transition: box-shadow .2s ease-out, background .18s ease-out, color .18s ease-out
}
}

.about-us-page {
max-width: 100%;
overflow-x: hidden
}

.about-us-page ::selection {
background: linear-gradient(90deg, #8E69F5, #BD5708);
color: #fff
}

.about-us-page .au-bounded {
max-width: 1500px;
margin-left: auto;
margin-right: auto;
padding-left: 24px;
padding-right: 24px
}

.about-us-page .au-dotted-rule {
border: none;
border-top: 2px dotted #d4cff0;
margin: 0
}

.about-us-page .au-raised-accent {
font-size: 15px;
color: #BD5708;
vertical-align: super;
line-height: 1.2
}

.about-us-page .au-bracket-accent {
color: #8E69F5
}

.about-us-page .au-identity {
background: #fff;
padding-top: 80px;
padding-bottom: 80px;
position: relative
}

.about-us-page .au-identity-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center
}

.about-us-page .au-identity-text {
display: flex;
flex-direction: column;
gap: 24px
}

.about-us-page .au-identity-label {
font-size: 15px;
color: #BD5708;
line-height: 1.2;
letter-spacing: .08em;
text-transform: uppercase
}

.about-us-page .au-identity-heading {
font-size: 41px;
line-height: 1.2;
color: #1b1340;
font-weight: 300;
margin: 0
}

.about-us-page .au-identity-body {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0
}

.about-us-page .au-identity-pull {
font-size: 24px;
line-height: 1.6;
color: #8E69F5;
font-weight: 300;
border-left: 2px solid #8E69F5;
padding-left: 24px;
margin: 0
}

.about-us-page .au-identity-visual {
position: relative;
display: flex;
flex-direction: column;
gap: 24px
}

.about-us-page .au-identity-img-frame {
border-radius: 6px;
overflow: hidden;
box-shadow: 1px 12px 60px 0 #8e69f51f
}

.about-us-page .au-identity-img-frame img {
width: 100%;
height: 360px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 6px
}

.about-us-page .au-identity-deco {
position: absolute;
top: -40px;
right: -24px;
font-size: 120px;
line-height: 1.2;
color: #EFF5FF;
font-weight: 700;
pointer-events: none;
user-select: none;
z-index: 0
}

.about-us-page .au-identity-img-frame {
position: relative;
z-index: 1
}

.about-us-page .au-stat-row {
display: flex;
flex-direction: row;
gap: 24px
}

.about-us-page .au-stat-item {
flex: 1;
background: #EFF5FF;
border-radius: 6px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 8px
}

.about-us-page .au-stat-number {
font-size: 41px;
line-height: 1.2;
color: #8E69F5;
font-weight: 700
}

.about-us-page .au-stat-label {
font-size: 15px;
line-height: 1.6;
color: #3a3050
}

.about-us-page .au-approach {
background: #EFF5FF;
padding-top: 80px;
padding-bottom: 80px
}

.about-us-page .au-approach-grid {
display: grid;
grid-template-columns: 5fr 7fr;
gap: 80px;
align-items: start
}

.about-us-page .au-approach-sticky {
display: flex;
flex-direction: column;
gap: 24px;
position: sticky;
top: 40px
}

.about-us-page .au-approach-heading {
font-size: 41px;
line-height: 1.2;
color: #1b1340;
font-weight: 300;
margin: 0
}

.about-us-page .au-approach-sub {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0
}

.about-us-page .au-approach-img {
border-radius: 6px;
overflow: hidden;
box-shadow: 1px 4px 20px 0 #8e69f517
}

.about-us-page .au-approach-img img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 6px
}

.about-us-page .au-pillars {
display: flex;
flex-direction: column;
gap: 24px
}

.about-us-page .au-pillar {
background: #fff;
border-radius: 6px;
padding: 24px;
display: flex;
flex-direction: row;
gap: 24px;
align-items: flex-start;
box-shadow: 1px 3px 4px 0 #8e69f50f;
transition: box-shadow .25s ease-out
}

@media (min-width: 1024px) {
.about-us-page .au-pillar:hover {
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

.about-us-page .au-pillar-number {
font-size: 24px;
line-height: 1.2;
color: #8E69F5;
font-weight: 700;
min-width: 40px
}

.about-us-page .au-pillar-text {
display: flex;
flex-direction: column;
gap: 8px
}

.about-us-page .au-pillar-heading {
font-size: 15px;
line-height: 1.6;
color: #1b1340;
font-weight: 700;
margin: 0
}

.about-us-page .au-pillar-body {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0
}

.about-us-page .au-team {
background: #fff;
padding-top: 80px;
padding-bottom: 80px
}

.about-us-page .au-team-intro {
display: flex;
flex-direction: row;
gap: 80px;
align-items: flex-end;
margin-bottom: 40px
}

.about-us-page .au-team-heading {
font-size: 41px;
line-height: 1.2;
color: #1b1340;
font-weight: 300;
margin: 0;
flex: 1
}

.about-us-page .au-team-note {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0;
flex: 1
}

.about-us-page .au-team-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px
}

.about-us-page .au-person-card {
display: flex;
flex-direction: row;
gap: 24px;
align-items: flex-start;
padding: 24px;
border-radius: 6px;
border: 1px solid #d4cff0;
box-shadow: 1px 3px 4px 0 #8e69f50f
}

.about-us-page .au-portrait-frame {
border-radius: 20px;
overflow: hidden;
flex-shrink: 0;
width: 80px;
height: 112px
}

.about-us-page .au-portrait-frame img {
width: 80px;
height: 112px;
object-fit: cover;
object-position: top;
display: block
}

.about-us-page .au-person-details {
display: flex;
flex-direction: column;
gap: 8px
}

.about-us-page .au-person-name {
font-size: 24px;
line-height: 1.2;
color: #1b1340;
font-weight: 600;
margin: 0
}

.about-us-page .au-person-role {
font-size: 15px;
line-height: 1.6;
color: #BD5708;
margin: 0
}

.about-us-page .au-person-bio {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0
}

.about-us-page .au-person-no-portrait {
display: flex;
flex-direction: column;
gap: 8px;
padding: 24px;
border-radius: 6px;
border: 1px solid #d4cff0;
box-shadow: 1px 3px 4px 0 #8e69f50f
}

.about-us-page .au-person-no-portrait .au-person-name {
font-size: 24px;
line-height: 1.2;
color: #1b1340;
font-weight: 600;
margin: 0
}

.about-us-page .au-person-no-portrait .au-person-role {
font-size: 15px;
line-height: 1.6;
color: #BD5708;
margin: 0
}

.about-us-page .au-person-no-portrait .au-person-bio {
font-size: 15px;
line-height: 1.6;
color: #3a3050;
margin: 0
}

.about-us-page .au-closing {
background: linear-gradient(160deg, #1b1340 60%, #2d1a6e 100%);
padding-top: 80px;
padding-bottom: 80px
}

.about-us-page .au-closing-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center
}

.about-us-page .au-closing-text {
display: flex;
flex-direction: column;
gap: 24px
}

.about-us-page .au-closing-heading {
font-size: 41px;
line-height: 1.2;
color: #fff;
font-weight: 300;
margin: 0
}

.about-us-page .au-closing-body {
font-size: 15px;
line-height: 1.6;
color: #c8bfff;
margin: 0
}

.about-us-page .au-closing-img-frame {
border-radius: 6px;
overflow: hidden;
box-shadow: 1px 12px 60px 0 #bd57081f
}

.about-us-page .au-closing-img-frame img {
width: 100%;
height: 320px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 6px
}

.about-us-page .au-link-button {
display: inline-block;
padding: 12px 24px;
border: 2px solid #8E69F5;
border-radius: 6px;
color: #8E69F5;
font-size: 15px;
line-height: 1.6;
text-decoration: none;
background: transparent;
align-self: flex-start;
transition: box-shadow .2s ease-out, background .18s ease-out, color .18s ease-out
}

@media (min-width: 1024px) {
.about-us-page .au-link-button:hover {
background: #8E69F5;
color: #fff;
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

.about-us-page .au-link-button:focus {
outline: 2px solid #BD5708;
outline-offset: 4px
}

.about-us-page .au-animate-in {
animation: au-scale-in .45s ease-out both
}

@keyframes au-scale-in {
from {
opacity: 0;
transform: scale(0.9)
}

to {
opacity: 1;
transform: scale(1)
}
}

.about-us-page .au-animate-delay-1 {
animation-delay: .1s
}

.about-us-page .au-animate-delay-2 {
animation-delay: .2s
}

.about-us-page .au-animate-delay-3 {
animation-delay: .3s
}

.about-us-page .au-char-reveal {
display: inline-block;
overflow: hidden;
white-space: nowrap;
animation: au-char-type 1.2s steps(40, end) both
}

@keyframes au-char-type {
from {
width: 0
}

to {
width: 100%
}
}

@media (max-width: 1024px) {
.about-us-page .au-identity-grid {
grid-template-columns: 1fr;
gap: 40px
}

.about-us-page .au-approach-grid {
grid-template-columns: 1fr;
gap: 40px
}

.about-us-page .au-approach-sticky {
position: static
}

.about-us-page .au-team-intro {
flex-direction: column;
gap: 24px
}

.about-us-page .au-closing-grid {
grid-template-columns: 1fr;
gap: 40px
}

.about-us-page .au-identity-deco {
display: none
}
}

@media (max-width: 768px) {
.about-us-page .au-team-cards {
grid-template-columns: 1fr
}

.about-us-page .au-stat-row {
flex-direction: column
}

.about-us-page .au-identity-heading {
font-size: 24px
}

.about-us-page .au-approach-heading {
font-size: 24px
}

.about-us-page .au-team-heading {
font-size: 24px
}

.about-us-page .au-closing-heading {
font-size: 24px
}

.about-us-page .au-identity {
padding-top: 40px;
padding-bottom: 40px
}

.about-us-page .au-approach {
padding-top: 40px;
padding-bottom: 40px
}

.about-us-page .au-team {
padding-top: 40px;
padding-bottom: 40px
}

.about-us-page .au-closing {
padding-top: 40px;
padding-bottom: 40px
}
}

@media (max-width: 360px) {
.about-us-page .au-bounded {
padding-left: 12px;
padding-right: 12px
}

.about-us-page .au-person-card {
flex-direction: column
}
}

.contact-us-page {
max-width: 1500px;
margin: 0 auto;
overflow-x: clip
}

.contact-us-page .slide-in {
animation: slideFromLeft .45s ease-out both
}

.contact-us-page .slide-in-delay-1 {
animation-delay: .1s
}

.contact-us-page .slide-in-delay-2 {
animation-delay: .22s
}

.contact-us-page .slide-in-delay-3 {
animation-delay: .35s
}

@keyframes slideFromLeft {
from {
opacity: 0;
transform: translateX(-40px)
}

to {
opacity: 1;
transform: translateX(0)
}
}

@media (max-width: 768px) {
.contact-us-page .slide-in {
animation: none;
opacity: 1;
transform: none
}
}

.contact-us-page .divider-dot {
display: flex;
align-items: center;
gap: 8px;
margin: 24px 0
}

.contact-us-page .divider-dot span.dot {
width: 5px;
height: 5px;
border-radius: 20px;
background: #8E69F5;
flex-shrink: 0
}

.contact-us-page .divider-dot span.line {
flex: 1;
height: 1px;
background: #8E69F5;
opacity: .3
}

.contact-us-page .grain-block {
position: relative;
padding: 80px 40px 40px;
background-color: #1b1530
}

.contact-us-page .grain-block::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
opacity: .35;
pointer-events: none
}

.contact-us-page .grain-block::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #8E69F5 0%, #BD5708 100%)
}

.contact-us-page .grain-label {
font-size: 15px;
line-height: 1.6;
color: #8E69F5;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: 12px;
position: relative
}

.contact-us-page .grain-heading {
font-size: 70px;
line-height: 1.2;
color: #fff;
font-weight: 700;
max-width: 700px;
position: relative;
margin: 0 0 24px
}

.contact-us-page .grain-heading sup {
font-size: 15px;
color: #BD5708;
vertical-align: super;
font-weight: 400
}

.contact-us-page .grain-subtext {
font-size: 15px;
line-height: 1.6;
color: #c9bfee;
max-width: 480px;
position: relative
}

.contact-us-page .grain-curl {
position: absolute;
top: 24px;
right: 40px;
width: 80px;
height: 80px;
opacity: .08;
pointer-events: none
}

@media (max-width: 768px) {
.contact-us-page .grain-block {
padding: 40px 24px
}

.contact-us-page .grain-heading {
font-size: 41px
}

.contact-us-page .grain-curl {
right: 12px;
width: 50px;
height: 50px
}
}

.contact-us-page .details-form-row {
display: flex;
flex-direction: row;
gap: 40px;
padding: 80px 40px;
background: #fff;
align-items: flex-start
}

.contact-us-page .details-col {
flex: 0 0 340px;
display: flex;
flex-direction: column;
gap: 24px
}

.contact-us-page .detail-item {
display: flex;
flex-direction: column;
gap: 4px;
border-left: 3px solid #8E69F5;
border-top: 1px solid #8e69f526;
padding: 12px 12px 12px 16px;
border-radius: 0 6px 6px 0
}

.contact-us-page .detail-item-label {
font-size: 15px;
line-height: 1.6;
color: #BD5708;
font-weight: 600
}

.contact-us-page .detail-item-value {
font-size: 15px;
line-height: 1.6;
color: #2a1f4a
}

.contact-us-page .detail-item-value a {
color: #2a1f4a;
text-decoration: none;
position: relative;
display: inline-block
}

.contact-us-page .detail-item-value a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
right: 50%;
height: 1px;
background: #8E69F5;
transition: left .25s ease-out, right .25s ease-out
}

@media (hover: hover) {
.contact-us-page .detail-item-value a:hover::after {
left: 0;
right: 0
}
}

.contact-us-page .form-col {
flex: 1;
min-width: 0
}

.contact-us-page .form-heading {
font-size: 41px;
line-height: 1.2;
color: #2a1f4a;
font-weight: 300;
margin: 0 0 8px
}

.contact-us-page .form-subtext {
font-size: 15px;
line-height: 1.6;
color: #5a4e7a;
margin-bottom: 24px
}

.contact-us-page .contact-form {
display: flex;
flex-direction: column;
gap: 24px
}

.contact-us-page .form-row-double {
display: flex;
flex-direction: row;
gap: 24px
}

.contact-us-page .field-group {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1
}

.contact-us-page .field-group label {
font-size: 15px;
line-height: 1.6;
color: #2a1f4a;
font-weight: 500
}

.contact-us-page .field-group input[type="text"],
.contact-us-page .field-group input[type="tel"] {
padding: 12px 16px;
border: 1px solid #8e69f54d;
border-radius: 6px;
font-size: 15px;
line-height: 1.6;
color: #2a1f4a;
background: #fff;
box-shadow: inset 1px 3px 4px 0 #8e69f50f;
outline: none;
transition: border-color .2s ease-out;
width: 100%;
box-sizing: border-box
}

.contact-us-page .field-group input[type="text"]:focus,
.contact-us-page .field-group input[type="tel"]:focus {
border-color: #8E69F5
}

.contact-us-page .field-group input::placeholder {
color: #a090c8
}

.contact-us-page .checkboxes-group {
display: flex;
flex-direction: column;
gap: 8px
}

.contact-us-page .checkboxes-group-label {
font-size: 15px;
line-height: 1.6;
color: #2a1f4a;
font-weight: 500;
margin-bottom: 4px
}

.contact-us-page .checkbox-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px
}

.contact-us-page .checkbox-item input[type="checkbox"] {
width: 20px;
height: 20px;
accent-color: #8E69F5;
cursor: pointer;
flex-shrink: 0;
border-radius: 2px
}

.contact-us-page .checkbox-item label {
font-size: 15px;
line-height: 1.6;
color: #2a1f4a;
cursor: pointer
}

.contact-us-page .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px
}

.contact-us-page .privacy-row input[type="checkbox"] {
width: 20px;
height: 20px;
accent-color: #8E69F5;
cursor: pointer;
flex-shrink: 0;
margin-top: 2px
}

.contact-us-page .privacy-row label {
font-size: 15px;
line-height: 1.6;
color: #5a4e7a
}

.contact-us-page .privacy-row label a {
color: #8E69F5;
text-decoration: none;
position: relative;
display: inline-block
}

.contact-us-page .privacy-row label a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
right: 50%;
height: 1px;
background: #8E69F5;
transition: left .2s ease-out, right .2s ease-out
}

@media (hover: hover) {
.contact-us-page .privacy-row label a:hover::after {
left: 0;
right: 0
}
}

.contact-us-page .submit-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 40px;
border: 2px solid #8E69F5;
border-radius: 6px;
background: transparent;
color: #8E69F5;
font-size: 15px;
line-height: 1.6;
font-weight: 600;
cursor: pointer;
align-self: flex-start;
transition: background .2s ease-out, color .18s ease-out, box-shadow .25s ease-out
}

@media (hover: hover) {
.contact-us-page .submit-btn:hover {
background: #8E69F5;
color: #fff;
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

.contact-us-page .submit-btn:focus {
outline: 2px solid #BD5708;
outline-offset: 3px
}

.contact-us-page .submit-btn:active {
box-shadow: 1px 12px 60px 0 #8e69f51f
}

@media (max-width: 1024px) {
.contact-us-page .details-form-row {
flex-direction: column;
padding: 40px 24px
}

.contact-us-page .details-col {
flex: none;
width: 100%
}
}

@media (max-width: 768px) {
.contact-us-page .form-row-double {
flex-direction: column
}

.contact-us-page .form-heading {
font-size: 24px
}
}

@media (max-width: 360px) {
.contact-us-page .submit-btn {
width: 100%;
justify-content: center
}
}

.contact-us-page .map-alt-block {
background: #EFF5FF;
padding: 80px 40px;
display: flex;
flex-direction: row;
gap: 40px;
align-items: stretch;
position: relative
}

.contact-us-page .map-alt-block .curl-decor {
position: absolute;
bottom: 24px;
right: 40px;
opacity: .07;
pointer-events: none;
width: 100px;
height: 100px
}

.contact-us-page .address-visual {
flex: 0 0 360px;
position: relative;
border-radius: 6px;
overflow: hidden
}

.contact-us-page .address-visual img {
width: 100%;
height: 100%;
min-height: 280px;
object-fit: cover;
display: block;
clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%)
}

.contact-us-page .address-text-col {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 24px
}

.contact-us-page .address-heading {
font-size: 41px;
line-height: 1.2;
color: #2a1f4a;
font-weight: 300;
margin: 0
}

.contact-us-page .address-pull-quote {
font-size: 24px;
line-height: 1.6;
color: #8E69F5;
font-weight: 300;
border-left: 3px solid #BD5708;
padding-left: 16px;
margin: 0
}

.contact-us-page .address-body {
font-size: 15px;
line-height: 1.6;
color: #3d3060
}

.contact-us-page .address-coords-row {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap
}

.contact-us-page .coord-box {
display: flex;
flex-direction: column;
gap: 4px;
padding: 12px 16px;
border: 1px solid #8e69f533;
border-radius: 6px;
background: #fff;
box-shadow: 1px 3px 4px 0 #8e69f50f;
min-width: 120px;
transition: box-shadow .22s ease-out
}

@media (hover: hover) {
.contact-us-page .coord-box:hover {
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

.contact-us-page .coord-box-label {
font-size: 15px;
line-height: 1.2;
color: #BD5708;
font-weight: 600
}

.contact-us-page .coord-box-value {
font-size: 15px;
line-height: 1.6;
color: #2a1f4a
}

.contact-us-page .icon-rect {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border: 1.5px solid #8E69F5;
border-radius: 6px;
flex-shrink: 0
}

@media (max-width: 1024px) {
.contact-us-page .map-alt-block {
flex-direction: column;
padding: 40px 24px
}

.contact-us-page .address-visual {
flex: none;
width: 100%;
height: 220px
}
}

@media (max-width: 768px) {
.contact-us-page .address-heading {
font-size: 24px
}

.contact-us-page .address-pull-quote {
font-size: 15px
}

.contact-us-page .map-alt-block .curl-decor {
display: none
}
}

.success-page {
min-height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 24px;
background: #EFF5FF
}

.success-page .success-card {
background: #fff;
border-radius: 6px;
box-shadow: 1px 4px 20px 0 #8e69f517;
padding: 40px;
max-width: 520px;
width: 100%;
text-align: center
}

.success-page .success-card .success-icon {
width: 56px;
height: 56px;
margin: 0 auto 24px;
display: block
}

.success-page .success-card .success-heading {
font-size: 41px;
line-height: 1.2;
color: #1b1340;
margin: 0 0 12px;
font-weight: 300
}

.success-page .success-card .success-text {
font-size: 15px;
line-height: 1.6;
color: #2d2d2d;
margin: 0 0 40px
}

.success-page .success-card .success-link {
display: inline-block;
font-size: 15px;
line-height: 1.6;
color: #8E69F5;
border: 1.5px solid #8E69F5;
border-radius: 6px;
padding: 8px 24px;
text-decoration: none;
transition: box-shadow .22s ease-out, background .18s ease-out, color .18s ease-out
}

@media (min-width: 768px) {
.success-page .success-card .success-link:hover {
background: #8E69F5;
color: #fff;
box-shadow: 1px 4px 20px 0 #8e69f517
}
}

@media (max-width: 360px) {
.success-page {
padding: 40px 12px
}

.success-page .success-card {
padding: 24px 12px
}

.success-page .success-card .success-heading {
font-size: 24px
}
}