@font-face {
    font-family: "Poppins";
    src:
            local("Poppins"),
            url("/content/poppins.woff") format("woff"),
            url("/content/poppins.woff2") format("woff2");
}

:root {
    --theme-color: #2F2F2F;
    --ink: #1a1a1a;
    --ink-soft: #2a2a2a;
    --muted: #6b6b6b;
    --line: #d4ccbd;
    --green: #16a34a;
    --green-deep: #0f7a37;
    --red: #c0392b;
    --gold: #c9a14a;
}

body { margin: 0; padding:0; font-family: 'Poppins'; }
.mainbody { min-height: calc(100vh - 280px); }

a { text-decoration: none; color: inherit; }

h1 { font-weight: 700;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 42px; line-height: 1.2; }
h2 { font-weight: 700;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 28px; line-height: 1.2;
    color: var(--theme-color); }

p { font-size: 16px; line-height: 1.6; }

.hilight1 { position: relative; }
.hilight1:after { content: ''; bottom:-10px; left:-20px; right: -20px; height:20px; position: absolute; background-image: url('/content/underline.png'); background-position: center center; background-size: contain; background-repeat: no-repeat; }

.btn_primary { text-decoration: none; padding:8px 30px; background: var(--theme-color); border-radius: 10px; color: #FFF; display: block; text-align: center; width: 90%; max-width: 140px; cursor: pointer; font-weight: bold; }

section.title { padding:10px 20px 80px 20px; text-align: center; color: #444; }




header { padding: 10px; background:#FFF; z-index: 100; position: sticky; top: 0px; left: 0px; right:0px;  color: #444; border-bottom: 2px solid var(--theme-color); }
header > div { display: flex; max-width: 1320px; margin: auto; align-items: center; }
header > div > * { flex: 1; font-size: 18px; }
header > div > *:first-child { flex: 4; align-items: center; }
header > div > * .link { padding:8px 20px; display: block; text-align: center; }
header > div > *:last-child .link.register { background:var(--theme-color); border-radius: 10px; color: #FFF; font-size: 90%; }

header .logo { display: flex; color: #000; }
header .logo > *:first-child { padding-right: 20px;  }
header .logo img { height:60px; vertical-align: top; }
header .logo .subtitle { display:block; margin-top:0; font-size:90%; }
header .logo .title > span:first-child { display: block; font-size: 130%; font-weight: bold; }

header .profile > * { display: inline-block; vertical-align: middle; }
header .profile img { width: 36px; height: 36px; margin-right:8px; }  

footer { background:var(--theme-color); color: #FFF; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
footer > * { padding: 30px; }
footer .menu { display: flex; gap:30px;  max-width: 1320px; margin: auto; }
footer .menu > * { flex:1; color: #EEE; line-height:20px; }
footer .menu > *:first-child { flex: 2; }
footer .menu .title { font-weight: bold; margin-bottom:20px; display: block; opacity: 0.7; text-transform: uppercase; font-size: 80%; }
footer .menu a { display: block; text-decoration: none; color: inherit; margin-bottom: 13px; }
footer .menu img { width: 20px; height: 20px; display: inline-block; }
footer .company { display: flex; align-items: center; width: 100%; font-size: 20px; gap: 10px; margin-bottom: 10px; }
footer .company .icon { display: block; width: 36px; padding: 8px 6px 2px 6px; background: #FFF; border-radius: 5px; }
footer .company .icon svg { width: 100%; }
footer .companydesc { display: block; font-size: 90%; line-height: 1.7; max-width: 300px; }


.paragraph { padding: 20px; }
.paragraph.hero { padding:80px; }
.paragraph.dark { background: var(--theme-color); color: #fff; }
.paragraph.dark h2 { color:#FFF; }
.paragraph.dark em { color: var(--green); }
.paragraph .content { max-width: 1320px; margin: auto; display: flex; gap:40px; width: 100%; align-items: center;  }
.paragraph.center { text-align: center; }
.paragraph h1, .paragraph h2, .paragraph h3, .paragraph h4 { margin-bottom: 20px; }
.paragraph table { margin: 30px 0; }
.paragraph.fulltable table { width: 100%; }
.paragraph table th { background: var(#222); color: #FFF; padding:10px; }
.paragraph ul { margin: 10px 30px; }
.paragraph li { padding:4px 0; }
.paragraph img { width: 100%; vertical-align: top; }

.table { display: flex; width: 100%; align-items: center; }
.table > * { flex:2; }
.table > *:first-child { flex: 1; }



.paragraph {
    background-image: url(/content/greensquiggle.png), url(/content/yellowsquiggle.png);
    background-position: right bottom, left top;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
}
.paragraph:nth-child(odd){
    background-image: url(/content/greensquiggle2.png), url(/content/yellowsquiggle2.png);
    background-position: 20% top, 80% bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
}

.paragraph .subtitle { text-transform: uppercase;
    opacity: 0.6; font-size: 20px; font-weight: normal; }
.paragraph.center { text-align: center; }
.paragraph.nobottom { margin-bottom: 0; padding-bottom: 0; }

@keyframes linkbounce {
    0%   { transform: scale(1,1)      translateX(0); }
    10%  { transform: scale(1.1,.95)   translateX(0); }
    30%  { transform: scale(.95,1.1)   translateX(20px); }
    50%  { transform: scale(1.05,.95) translateX(0); }
    100% { transform: scale(1,1)      translateX(0); }
}


.question { padding-left: 40px; text-align: left; display: block; margin-top: 20px; }
.question h2 { display: block; border-radius: 10px; background: var(--theme-color); color: #FFF; cursor: pointer;font-size: 18px;
    padding: 10px; }
.question input { display: none; }
.question .answer { display: none; padding: 20px;
    box-sizing: border-box; }
.question input:checked + .answer { display: block; }

.greyhero { background: #EEE; }

.contacttext { margin:60px auto 40px auto; }
.contact {
    width: 100%; margin:20px auto 60px auto; padding:30px 40px; background:#FFF; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1);  overflow: hidden; box-sizing: border-box;
}
.contact > span {
    display: table; table-layout: fixed; width: 100%; margin-bottom: 15px;
}
.contact > span > span, .contact > span > label{ display:  table-cell; vertical-align: middle; }
.contact label { width: 100px; font-size: 14px; }
.contact .inputrow { width:100%; box-sizing: border-box; }
.contact .inputrow input { width: 100%; max-width: 100%; border: 1px solid #CCC;  border-radius: 5px; padding: 6px; box-sizing: border-box; }
.contact textarea { width: 100%; max-width: 100%; height: 120px; border: 1px solid #CCC;  border-radius: 5px; padding: 6px; box-sizing: border-box; margin-bottom: 15px; }
.contact button { float: right; border:none; width: auto; max-width: none; }




@media only screen and (max-width: 700px) {  
    header > div { text-align: center; }
    .hero_section .content { display: block; padding: 20px; box-sizing: border-box; }
    header .logo .title { display: none; }
    header > div > :first-child { flex: 0.5; }
    .table { display: block; }
    .features, .question { padding-left: 0; }
    .featurepanel { margin:0px auto 40px auto; }
    .pricingtable { display: block; }
    .pricingtable > * { margin-bottom: 20px; }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
.fade-up:nth-child(4) { animation-delay: 0.35s; }
.fade-up:nth-child(5) { animation-delay: 0.45s; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 12px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 32px;
}
.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

em {
    font-style: italic;
    font-weight: 400;
    color: var(--green-deep);
    font-feature-settings: "ss01";
}

.sub {
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 56ch;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--ink);
    color: #FFF;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 6px 20px rgba(26,26,26,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26,26,26,0.25); }
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-secondary:hover { background: var(--cream-2); }
.btn-arrow { transition: transform 0.15s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.hero-meta {
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
    content: '✓';
    color: var(--green);
    font-family: var(--sans);
    font-weight: 700;
}


.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 780px) { .demo-grid { grid-template-columns: 1fr; } }

.demo-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 20px 40px -20px rgba(26,26,26,0.15);
}
.demo-card-label {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 5;
}
.demo-card-body {
    padding: 70px 32px 32px;
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-card-footer {
    border-top: 1px solid var(--line);
    padding: 18px 24px;
    background: white;
    font-size: 14px;
    color: var(--muted);
}
.demo-card-footer strong { color: var(--ink); font-weight: 600; }

/* Mock popup (age verification) */
.mock-popup {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.25);
}
.mock-popup-logo {
    width: 40px;
    height: 40px;
    background: var(--ink);
    border-radius: 8px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
}
.mock-popup h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.mock-popup p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 22px;
}
.mock-popup-actions { display: flex; gap: 10px; }
.mock-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--sans);
    border: none;
    cursor: pointer;
}
.mock-btn-yes { background: var(--ink); color: white; }
.mock-btn-no { background: transparent; color: var(--muted); border: 1px solid #e5e5e5; }

/* Mock checkout with checkbox */
.mock-checkout {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 22px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 24px 50px -20px rgba(0,0,0,0.2);
}
.mock-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}
.mock-product-img {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b1a1a, #c0392b);
    border-radius: 6px;
    flex-shrink: 0;
}
.mock-product-name { font-size: 14px; font-weight: 500; }
.mock-product-price { font-size: 13px; color: var(--muted); }
.mock-checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 16px;
}
.mock-checkbox {
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.mock-checkbox::after {
    content: '';
    width: 10px;
    height: 6px;
    border: 2px solid white;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg) translateY(-1px);
}
.mock-checkbox-label {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--ink-soft);
}
.mock-checkbox-label a { color: var(--green-deep); text-decoration: underline; }
.mock-atc {
    width: 100%;
    padding: 13px;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--sans);
    font-size: 14px;
    cursor: pointer;
}

.usecases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}
@media (max-width: 880px) { .usecases { grid-template-columns: repeat(2, 1fr); } }

.usecase {
    background: #595757;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.usecase:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -16px rgba(26,26,26,0.2);
}
.usecase-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 12px;
    font-size: 30px;
}
.usecase-title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
}
.usecase-age {
    font-size: 11px;
    color: #CCC;
    letter-spacing: 0.1em;
}

.features {
    margin: 60px 0;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}
.features-inner {
    margin: 0 auto;
    padding: 0 28px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245, 241, 234, 0.12);
    border: 1px solid rgba(245, 241, 234, 0.12);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 56px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
    background: var(--ink);
    padding: 36px 32px;
    transition: background 0.3s;
}
.feature:hover { background: var(--ink-soft); }
.feature-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 24px;
    letter-spacing: 0.14em;
}
.feature-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.feature-desc {
    font-size: 14.5px;
    color: rgba(245, 241, 234, 0.65);
    line-height: 1.55;
}
.features .section-title { color: var(--cream); max-width: 22ch; }
.features .section-kicker { color: rgba(245, 241, 234, 0.55); }
.features .section-lede { color: rgba(245, 241, 234, 0.7); }




.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 800px;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
    background: #FFF;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
}
.tier.pro {
    background: var(--theme-color);
    color: #FFF;
    border-color: var(--ink);
}
.tier.pro h2 { color: inherit; }
.tier .price {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
    display: inline-block;
    align-items: baseline;
    margin-right: 10px;
}
.tier .year { display: block; margin-top: 15px; opacity: 0.7;
    opacity: 0.6; font-size: 90%; }
.tier ul {
    list-style: none;
    margin:20px 0 0 0;
    padding: 0;
}
.tier li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
}
.tier-pro li { border-color: rgba(245,241,234,0.1); }
.tier li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}
