@font-face { 
    font-family: "SF Pro Text"; 
    src: url("/assets/fonts/SF-Pro-Text-Regular.woff2") format("opentype"); 
    font-weight: 400; 
}

@font-face { 
    font-family: "SF Pro Text"; 
    src: url("/assets/fonts/SF-Pro-Text-Bold.woff2") format("opentype"); 
    font-weight: 700; 
}

@font-face { 
    font-family: "SF Pro Display"; 
    src: url("/assets/fonts/SF-Pro-Display-Bold.woff2") format("opentype"); 
    font-weight: 700; 
}

@font-face { 
    font-family: "New York"; 
    src: url("/assets/fonts/NewYorkMedium-Regular.woff2") format("opentype"); 
    font-weight: 400; 
}

:root {
    --black: #050505;
    --ink: #111111;
    --gray-dark: #333333;
    --gray-light: #e5e5e5;
    --white: #ffffff;
    --bg-paper: #f4f4f5;
    
    --font-serif: 'New York', serif; 
    --font-sans: 'SF Pro Text', sans-serif; 
    --font-display: 'SF Pro Display', sans-serif; 

    --container-max: 1440px;
    --border: 1px solid rgba(0,0,0,0.15);
    --border-strong: 1px solid #000;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-paper);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); margin-bottom: 2rem; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 2rem; }
h3 { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

h4 {
    font-weight:600!important;
    font-size: clamp(1.25rem, 1.25vw, 1.25rem);
}

p { font-size: 1.125rem; max-width: 60ch; color: var(--gray-dark); margin-bottom: 1.5rem; }
.lead { font-size: 1.5rem; line-height: 1.4; color: var(--black); }

p.small {
    font-size:0.9rem!important;
}

ul.small li, ol.small li {
    font-size:0.9rem!important;
}

.legal-section {
    margin-top:24px;
}

@media (min-width:992px) {

    .legal-section {
        max-width:50%!important;
    }

}

.legal-section h4 {
    margin-bottom:12px;
}

.legal-section h5 {
    font-weight:600!important;
    font-size: clamp(1rem, 1.25vw, 1rem);
    margin-bottom:12px;
}

.legal-section ul li, .legal-section ol li {
    margin-top:0px!important;
    margin-bottom:0px!important;
}

.label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--black);
    width: fit-content;
}

.wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--white);
    border-left: var(--border);
    border-right: var(--border);
    min-height: 100vh;
}

.section {
    border-bottom: var(--border);
    padding: 6rem 3rem;
    position: relative;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--border); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); border-top: var(--border); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--border); }

.cell { padding: 3rem; border-right: var(--border); }
.cell:last-child { border-right: none; }

.section-invert { background: var(--black); color: var(--white); border-bottom: none; }
.section-invert .grid-2, .section-invert .cell { border-color: rgba(255,255,255,0.2); }
.section-invert p { color: #aaa; }
.section-invert .label { border-color: var(--white); color: #fff; }

.visual-slot {
    width: 100%;
    background: #eef1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0; 
}

.visual-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center top;
}

.visual-slot.hero { 
    height: auto;
    aspect-ratio: 16 / 9;
    min-height:580px;
    background: linear-gradient(180deg, #1a1f35 0%, #2d3748 100%); 
    border: none; 
}

.visual-slot.tall { 
    height: 100%; 
    min-height: 500px; 
}

.visual-slot.wide { 
    margin: 2rem 0;
    min-height:400px;
}

.visual-slot.icon { height: 80px; width: 80px; margin-bottom: 1rem; border-radius: 50%; background: #fff; border: 1px solid #ddd; }

.visual-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}
.hero .visual-label { color: rgba(255,255,255,0.5); }

details {
    border-bottom: var(--border);
    padding: 1.5rem 0;
}
summary {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; }
details[open] summary::after { content: "-"; }
details p { margin-top: 1rem; font-size: 1rem; color: var(--gray-dark); margin-bottom: 0; }

li { 
    margin-top: 1rem!important; 
    font-size: 1rem!important; 
    color: var(--gray-dark)!important; 
    margin-bottom: 0!important; 
    margin-left:20px!important;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid var(--black);
    color: var(--black);
    transition: all 0.2s;
}
.btn:hover { background: var(--black); color: var(--white); }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { opacity: 0.9; }

.pricing-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #eee; font-size: 0.9rem; }

@media (max-width: 1024px) {
    .grid-2, .grid-4, .grid-3 { display: flex; flex-direction: column; }
    .cell { border-right: none; border-bottom: var(--border); }
    .section { padding: 4rem 1.5rem; }
    .visual-slot.hero { height: 400px; }
}