:root{
    --bg:#f5f7f1;
    --surface:rgba(255,255,255,.72);
    --surface-strong:rgba(255,255,255,.92);
    --line:rgba(12,68,38,.09);
    --text:#102717;
    --muted:#5f6d63;
    --green-dark:#0d6a35;
    --green:#87c438;
    --green-soft:#dff1bc;
    --shadow:0 30px 80px rgba(17,54,29,.10);
    --radius-xl:34px;
    --radius-lg:24px;
    --radius-md:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    color:var(--text);
    font-family:Metropolis, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(135,196,56,.18), transparent 24%),
        radial-gradient(circle at 90% 15%, rgba(13,106,53,.08), transparent 28%),
        linear-gradient(180deg, #fbfcf8 0%, var(--bg) 100%);
    overflow-x:hidden;
}
.noise{
    position:fixed; inset:0; pointer-events:none; opacity:.06;
    background-image: radial-gradient(#0b3d1f 0.5px, transparent 0.5px);
    background-size:12px 12px;
    mask-image:linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%);
}
.shell{
    min-height:100%;
    width:min(1200px, calc(100% - 32px));
    margin:0 auto;
    display:grid;
    place-items:center;
    padding:28px 0;
}
.hero-card{
    width:100%;
    background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
    backdrop-filter:blur(18px);
    border:1px solid var(--line);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow);
    padding:26px;
    position:relative;
    overflow:hidden;
}
.hero-card::before,
.hero-card::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(10px);
}
.hero-card::before{
    width:320px;height:320px;right:-90px;top:-100px;
    background:radial-gradient(circle, rgba(135,196,56,.30), transparent 68%);
}
.hero-card::after{
    width:260px;height:260px;left:-80px;bottom:-120px;
    background:radial-gradient(circle, rgba(13,106,53,.16), transparent 68%);
}
.hero-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    position:relative;
    z-index:2;
}
.brand img{height:72px;width:auto;display:block}
.badge{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.8);
    border:1px solid var(--line);
    color:var(--green-dark);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:26px;
    align-items:center;
    margin-top:14px;
    position:relative;
    z-index:2;
}
.eyebrow{
    display:inline-block;
    padding:8px 12px;
    border-radius:999px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
h1{
    margin:18px 0 10px;
    font-size:clamp(3rem, 7vw, 5.6rem);
    line-height:.92;
    letter-spacing:-.06em;
}
h1 span{color:var(--green-dark)}
.subcopy{
    margin:0;
    color:var(--muted);
    font-size:clamp(1rem, 1.4vw, 1.16rem);
    max-width:520px;
}
.service-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:26px 0 24px;
}
.service-pills span{
    padding:12px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.76);
    border:1px solid var(--line);
    font-weight:700;
    color:#183120;
}
.download-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    max-width:670px;
}
.download-card{
    position:relative;
    display:block;
    padding:18px;
    border-radius:22px;
    border:1px solid var(--line);
    background:var(--surface-strong);
    box-shadow:0 18px 40px rgba(17,54,29,.08);
    color:inherit;
    text-decoration:none;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.download-card:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 50px rgba(17,54,29,.12);
}
.download-card.primary{
    background:linear-gradient(135deg, #0d6a35 0%, #114a2b 100%);
    color:#fff;
    border-color:transparent;
}
.card-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}
.card-head small,
.card-head span{
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.9;
}
.download-card strong{
    display:block;
    font-size:1.55rem;
    letter-spacing:-.03em;
}
.download-card em{
    display:block;
    margin-top:4px;
    font-style:normal;
    color:inherit;
    opacity:.78;
}
.download-card b{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    font-size:.96rem;
}
.download-card b::after{
    content:"→";
    font-size:1.05rem;
}
.mini-note{
    margin-top:14px;
    color:var(--muted);
    font-size:.95rem;
}
.hero-visual{
    position:relative;
    min-height:580px;
    display:grid;
    place-items:center;
}
.orb{
    position:absolute;
    border-radius:50%;
}
.orb-1{
    width:520px;height:520px;
    background:linear-gradient(180deg, #9acb37 0%, #6aa928 100%);
    right:-60px;top:10px;
}
.orb-2{
    width:400px;height:400px;
    background:rgba(255,255,255,.55);
    right:10px;top:70px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.55);
}
.phone-card{
    width:min(360px, 76%);
    aspect-ratio:9/18;
    border-radius:42px;
    background:linear-gradient(180deg, #ffffff 0%, #f5f7f0 100%);
    border:10px solid #1a1a1a;
    box-shadow:0 34px 70px rgba(0,0,0,.18);
    padding:16px 14px 18px;
    position:relative;
    transform:rotate(-9deg);
    z-index:3;
}
.phone-card::before{
    content:"";
    position:absolute;
    top:8px; left:50%; transform:translateX(-50%);
    width:34%; height:20px; border-radius:999px;
    background:#111;
}
.phone-top{display:flex;gap:6px;margin-top:18px;margin-bottom:18px}
.phone-top span{width:7px;height:7px;border-radius:50%;background:#d6dbd1}
.screen-brand img{height:54px;width:auto;object-fit:contain}
.screen-banner{
    margin-top:14px;
    border-radius:24px;
    padding:18px;
    background:linear-gradient(135deg, #0d6a35, #83c238);
    color:#fff;
}
.screen-banner strong{display:block;font-size:1.35rem;letter-spacing:-.03em}
.screen-banner p{margin:6px 0 0;opacity:.92}
.screen-cats{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
    margin-top:14px;
}
.screen-cats span{
    text-align:center;
    padding:16px 10px;
    border-radius:20px;
    background:#f4f6f1;
    border:1px solid #ebefe6;
    font-weight:700;
}
.screen-footer{
    height:18px;
    border-radius:999px;
    background:#edf1e9;
    margin-top:14px;
}

@media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr}
    .hero-visual{min-height:460px}
    .phone-card{transform:rotate(-6deg)}
}
@media (max-width: 720px){
    .shell{width:min(100% - 20px, 1200px); padding:10px 0 20px}
    .hero-card{padding:18px}
    .brand img{height:56px}
    .badge{display:none}
    h1{font-size:clamp(2.5rem, 13vw, 4.5rem)}
    .download-grid{grid-template-columns:1fr}
    .hero-visual{min-height:360px}
    .orb-1{width:340px;height:340px;right:-70px}
    .orb-2{width:250px;height:250px;right:10px;top:90px}
    .phone-card{width:min(280px, 78%); border-width:8px; border-radius:34px}
    .service-pills span{padding:10px 14px; font-size:.94rem}
}
