*{margin:0;padding:0;box-sizing:border-box}
:root{
--bg:#0A130F;
--bg-section:#11201A;
--bg-card:#1A2C25;
--bg-card-raised:#243B32;
--bg-alt:#0A130F;
--teal:#7AA088;
--teal-light:#A5C0AE;
--teal-glow:rgba(122,160,136,.18);
--gold:#F5C518;
--text:#F5EFE6;
--text-mid:#C7CCD2;
--text-dim:#7A7A7A;
--border:rgba(255,255,255,.07);
--border-mid:rgba(255,255,255,.12);
--font:'Inter',system-ui,sans-serif;
--display:'Zilla Slab',Georgia,serif;
--mono:'DM Mono',monospace;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font);color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);background:rgba(15,25,35,.9);border-bottom:1px solid var(--border)}
nav .inner{max-width:1200px;margin:0 auto;padding:0 2rem;height:72px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:.75rem;text-decoration:none;color:var(--text)}
.nav-logo .mark-img{width:40px;height:40px;flex-shrink:0}
.nav-logo span{font-family:var(--display);font-size:1.5rem;font-weight:700;letter-spacing:-0.02em;color:#F5EFE6}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{text-decoration:none;color:var(--text-mid);font-size:.9rem;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--teal-light)}
.nav-cta{background:var(--teal)!important;color:#fff!important;padding:.6rem 1.4rem;border-radius:100px;font-weight:600;transition:background .2s}
.nav-cta:hover{background:var(--teal-light)!important}

/* HERO */
.hero{padding:10rem 2rem 6rem;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;position:relative}
.hero::before{content:'';position:absolute;top:4rem;right:-8%;width:560px;height:560px;border-radius:50%;background:radial-gradient(circle,var(--teal-glow) 0%,transparent 70%);z-index:-1}
.hero-text h1{font-family:var(--display);font-size:3.6rem;font-weight:700;letter-spacing:-2px;line-height:1.08;color:var(--text)}
.hero-text h1 em{font-style:normal;color:var(--teal-light)}
.hero-text p{font-size:1.15rem;color:var(--text-mid);margin:1.25rem 0 2rem;line-height:1.65;max-width:500px}
.hero-ctas{display:flex;gap:.75rem;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.8rem;border-radius:14px;font-size:1rem;font-weight:600;text-decoration:none;font-family:var(--font);transition:all .2s;cursor:pointer;border:none}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-light);transform:translateY(-1px)}
.btn-secondary{background:var(--bg-card);color:var(--text);border:1px solid var(--border-mid)}
.btn-secondary:hover{border-color:var(--teal);color:var(--teal-light)}
.btn svg{width:20px;height:20px}
.hero-note{font-size:.85rem;color:var(--text-dim);margin-top:1rem}

/* Hero phone mockup (real app screen in a device frame) */
.hero-visual{position:relative;display:flex;justify-content:center;align-items:center}
.hero-phone{position:relative;width:100%;max-width:300px;margin:0 auto;border:12px solid #131e18;border-radius:44px;background:#131e18;box-shadow:0 35px 70px rgba(0,0,0,.55),0 0 90px rgba(122,160,136,.16);overflow:hidden}
.hero-phone img{display:block;width:100%;height:auto;border-radius:32px}
@media(max-width:768px){.hero-phone{max-width:260px}}

/* Phone frame (kept for any other surface that still references it) */
.phone-frame{width:300px;background:#07110C;border-radius:36px;padding:14px;box-shadow:0 40px 80px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.06) inset,0 0 60px var(--teal-glow)}
.phone-screen{background:#FAF7F1;border-radius:24px;overflow:hidden;padding:1.5rem}
.phone-notch{width:80px;height:4px;background:#DCCAB1;border-radius:3px;margin:0 auto .85rem}
.phone-header{font-size:.82rem;font-weight:700;color:#1A1A1A;margin-bottom:.85rem}
.phone-card{background:#fff;border-radius:14px;padding:.9rem;margin-bottom:.6rem;border:1px solid #EDE2D2}
.phone-card .label{font-size:.68rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:#2D4A3E;margin-bottom:.25rem}
.phone-card .title{font-size:.88rem;font-weight:600;color:#1A1A1A}
.phone-card .sub{font-size:.73rem;color:#5C5C5C;margin-top:.12rem}
.phone-card .amount{font-size:1.05rem;font-weight:700;color:#222E38;margin-top:.35rem}
.phone-arrow{text-align:center;color:#2D4A3E;font-size:1rem;margin:.2rem 0}
.badge-active{display:inline-block;background:#EAF0EC;color:#2D4A3E;font-size:.62rem;font-weight:700;padding:.12rem .45rem;border-radius:4px;margin-left:.35rem;text-transform:uppercase}

/* TRADES STRIP */
.trades-strip{padding:2.5rem 2rem;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg-section)}
.trades-inner{max-width:1200px;margin:0 auto;text-align:center}
.trades-label{font-size:.82rem;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--text-dim);margin-bottom:1.1rem}
.trades-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:.45rem}
.trade-tag{background:var(--bg-card);color:var(--text-mid);padding:.4rem .95rem;border-radius:100px;font-size:.8rem;font-weight:500;border:1px solid var(--border)}

/* FEATURES */
.features{padding:6rem 2rem;max-width:1200px;margin:0 auto}
.section-label{font-size:.82rem;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--teal-light);margin-bottom:.75rem}
.section-title{font-family:var(--display);font-size:2.6rem;font-weight:700;letter-spacing:-1.5px;margin-bottom:1rem;color:var(--text)}
.section-desc{font-size:1.1rem;color:var(--text-mid);max-width:560px;line-height:1.65;margin-bottom:3.5rem}

.feature-section{margin-bottom:4rem}
.feature-section-header{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.feature-section-icon{width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center}
.feature-section-icon.teal{background:rgba(122,160,136,.15);color:var(--teal-light)}
.feature-section-icon.navy{background:var(--bg-card);color:var(--text-mid)}
.feature-section-icon.gold{background:rgba(245,197,24,.1);color:#d4a900}
.feature-section h3{font-size:1.5rem;font-weight:700;color:var(--text)}
.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.feature-item{display:flex;gap:.75rem;align-items:flex-start;background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:1.1rem 1.25rem;transition:border-color .2s,transform .15s}
.feature-item:hover{border-color:var(--teal);transform:translateY(-1px)}
.feature-check{flex-shrink:0;width:22px;height:22px;border-radius:6px;background:rgba(122,160,136,.15);display:flex;align-items:center;justify-content:center;margin-top:1px}
.feature-check svg{width:14px;height:14px;color:var(--teal-light)}
.feature-item p{font-size:.92rem;color:var(--text-mid);line-height:1.5}
.feature-item strong{color:var(--text);font-weight:600}
.pro-badge{display:inline-block;background:var(--gold);color:#111;font-size:.6rem;font-weight:700;padding:.1rem .4rem;border-radius:3px;text-transform:uppercase;margin-left:.3rem;vertical-align:middle}

/* GALLERY */
.gallery{padding:6rem 2rem;max-width:1200px;margin:0 auto}
.gallery .section-label,.gallery .section-title,.gallery .section-desc{text-align:center}
.gallery .section-desc{margin-left:auto;margin-right:auto}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.gallery-item{background:transparent;border:none;border-radius:0;padding:0;transition:transform .15s}
.gallery-item:hover{transform:translateY(-4px)}
.gallery-shot{width:100%;aspect-ratio:9/19.5;border-radius:30px;background:#0c1611;object-fit:cover;display:block;border:10px solid #141f19;box-shadow:0 18px 45px rgba(0,0,0,.5)}
.gallery-cap{font-size:.88rem;color:var(--text-mid);text-align:center;margin-top:.85rem;font-weight:500}
@media(max-width:900px){.gallery-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.gallery-grid{grid-template-columns:1fr}}

/* HOW IT WORKS */
.how-it-works{padding:6rem 2rem;background:var(--bg-alt);position:relative;overflow:hidden}
.how-it-works::before{content:'';position:absolute;top:-200px;right:-100px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(122,160,136,.06) 0%,transparent 70%)}
.how-inner{max-width:1200px;margin:0 auto}
.how-it-works .section-title{color:var(--text)}
.how-it-works .section-desc{color:var(--text-mid)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.step{padding:2rem;border-radius:20px;background:var(--bg-card);border:1px solid var(--border);transition:border-color .2s}
.step:hover{border-color:var(--teal)}
.step-num{font-family:var(--mono);font-size:.8rem;font-weight:500;color:var(--teal-light);margin-bottom:1rem;display:inline-block;background:rgba(122,160,136,.12);padding:.3rem .7rem;border-radius:8px}
.step h3{font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:.5rem}
.step p{font-size:.88rem;color:var(--text-mid);line-height:1.6}

/* NOT SECTION */
.not-section{padding:5rem 2rem;background:var(--bg-section)}
.not-inner{max-width:900px;margin:0 auto;text-align:center}
.not-section h2{font-size:2.2rem;font-weight:700;letter-spacing:-1px;color:var(--text);margin-bottom:1rem}
.not-section .lead{font-size:1.1rem;color:var(--text-mid);max-width:640px;margin:0 auto 2rem;line-height:1.65}
.not-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin-bottom:2rem}
.not-tag{background:var(--bg-card);color:var(--text-dim);padding:.5rem 1.1rem;border-radius:10px;font-size:.88rem;font-weight:500;border:1px solid var(--border);text-decoration:line-through;text-decoration-color:rgba(200,80,80,.35)}
.not-footer{font-size:1rem;color:var(--text-mid);font-weight:600;margin-top:1.5rem;font-style:italic}

/* PRICING */
.pricing{padding:6rem 2rem}
.pricing-inner{max-width:1000px;margin:0 auto;text-align:center}
.pricing .section-title{text-align:center}
.pricing .section-desc{text-align:center;margin:0 auto 3rem}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:2rem}
.price-card{background:var(--bg-card);border:1px solid var(--border);border-radius:20px;padding:2rem;text-align:center;transition:transform .2s,border-color .2s}
.price-card:hover{transform:translateY(-4px);border-color:var(--border-mid)}
.price-card.featured{border-color:var(--teal);position:relative;box-shadow:0 0 40px rgba(122,160,136,.12)}
.price-card.featured::before{content:'Best value';position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--teal);color:#fff;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;padding:.3rem 1rem;border-radius:100px}
.price-period{font-size:.9rem;font-weight:600;color:var(--text-dim);text-transform:uppercase;letter-spacing:1px;margin-bottom:.75rem}
.price-amount{font-size:2.8rem;font-weight:700;color:var(--text);line-height:1}
.price-amount small{font-size:.9rem;font-weight:500;color:var(--text-dim)}
.price-per{font-size:.85rem;color:var(--text-dim);margin-top:.3rem;margin-bottom:1rem}
.price-save{display:inline-block;background:rgba(122,160,136,.15);color:var(--teal-light);font-size:.78rem;font-weight:600;padding:.25rem .7rem;border-radius:6px}
.price-features{list-style:none;text-align:left;margin-top:1.4rem;display:flex;flex-direction:column;gap:.55rem}
.price-features li{display:flex;gap:.55rem;align-items:flex-start;font-size:.88rem;color:var(--text-mid);line-height:1.4}
.price-features li svg{width:15px;height:15px;color:var(--teal-light);flex-shrink:0;margin-top:.15rem}
.trial-note{font-size:.95rem;color:var(--text-mid);margin-top:2rem;line-height:1.6}
.trial-note strong{color:var(--text)}
.pro-note{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:1.5rem;margin-top:1.5rem;text-align:left;font-size:.9rem;color:var(--text-mid);line-height:1.6}
.pro-note strong{color:var(--text)}
.tax-note{background:var(--bg-card-raised);border:1px solid var(--border-mid);border-left:3px solid var(--teal);border-radius:14px;padding:1.5rem;margin-top:1.25rem;text-align:left;font-size:.9rem;color:var(--text-mid);line-height:1.6;display:flex;gap:1rem;align-items:flex-start}
.tax-note-icon{color:var(--teal-light);flex-shrink:0;margin-top:.15rem}
.tax-note-body{flex:1}
.tax-note strong{color:var(--text)}
.tax-note small{font-size:.78rem;color:var(--text-dim);font-style:italic}
.tax-note a{color:var(--teal-light);text-decoration:underline}

/* ABOUT */
.about{padding:6rem 2rem;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-visual{background:var(--bg-card);border-radius:24px;padding:3rem;position:relative;overflow:hidden;border:1px solid var(--border)}
.about-visual::after{content:'';position:absolute;bottom:-40px;right:-40px;width:180px;height:180px;border-radius:50%;background:radial-gradient(circle,rgba(122,160,136,.12) 0%,transparent 70%)}
.about-quote{font-size:1.45rem;font-weight:600;color:var(--text);line-height:1.45;position:relative;z-index:1}
.about-quote::before{content:'\201C';font-size:4rem;color:var(--teal);line-height:1;display:block;margin-bottom:-.5rem}
.about-attr{margin-top:1.5rem;font-size:.9rem;color:var(--text-dim);position:relative;z-index:1}
.about-text h2{font-size:2.4rem;font-weight:700;letter-spacing:-1px;margin-bottom:1.5rem;color:var(--text)}
.about-text p{font-size:1.05rem;color:var(--text-mid);line-height:1.7;margin-bottom:1rem}
.about-badges{display:flex;gap:.75rem;margin-top:1.5rem;flex-wrap:wrap}
.about-badges span{display:flex;align-items:center;gap:.4rem;font-size:.85rem;font-weight:600;color:var(--text);background:var(--bg-card);border:1px solid var(--border);padding:.5rem 1rem;border-radius:10px}
.about-badges span svg{width:16px;height:16px;color:var(--teal-light)}

/* TRUST STRIP + DATA CONTROL */
.trust-strip{padding:1.4rem 2rem;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.trust-strip-inner{max-width:1100px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:center;gap:1rem 2.5rem}
.trust-strip-inner span{display:flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:600;color:var(--text-mid)}
.trust-strip-inner svg{width:16px;height:16px;color:var(--teal-light);flex-shrink:0}
.trust-section{padding:6rem 2rem;max-width:1140px;margin:0 auto;text-align:center}
.trust-section .section-title{text-align:center}
.trust-section .section-desc{text-align:center;margin:0 auto 3rem}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;text-align:left}
.trust-card{background:var(--bg-card);border:1px solid var(--border);border-radius:18px;padding:1.75rem;transition:transform .2s,border-color .2s}
.trust-card:hover{transform:translateY(-4px);border-color:var(--border-mid)}
.trust-card-icon{width:42px;height:42px;border-radius:11px;background:rgba(122,160,136,.12);display:flex;align-items:center;justify-content:center;color:var(--teal-light);margin-bottom:1rem}
.trust-card-icon svg{width:21px;height:21px}
.trust-card h3{font-size:1.05rem;font-weight:700;color:var(--text);margin-bottom:.5rem}
.trust-card p{font-size:.9rem;color:var(--text-mid);line-height:1.55}
.trust-foot{margin-top:2.5rem;font-size:1rem;color:var(--text-mid);font-style:italic}
@media(max-width:900px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.trust-grid{grid-template-columns:1fr}}

/* CTA */
.cta-section{padding:6rem 2rem;text-align:center}
.cta-card{max-width:800px;margin:0 auto;border-radius:28px;padding:4rem 3rem;position:relative;overflow:hidden;background:linear-gradient(135deg,#0d2535 0%,#0f1e2e 50%,#0b1e2c 100%);border:1px solid rgba(122,160,136,.25);box-shadow:0 0 80px rgba(122,160,136,.1),0 40px 80px rgba(0,0,0,.4)}
.cta-card::before{content:'';position:absolute;top:-60px;left:-60px;width:250px;height:250px;border-radius:50%;background:radial-gradient(circle,rgba(122,160,136,.15) 0%,transparent 70%)}
.cta-card::after{content:'';position:absolute;bottom:-80px;right:-80px;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(61,153,144,.08) 0%,transparent 70%)}
.cta-card h2{font-size:2.6rem;font-weight:700;color:var(--text);letter-spacing:-1px;margin-bottom:.75rem;position:relative;z-index:1}
.cta-card > p{font-size:1.1rem;color:var(--text-mid);margin-bottom:2rem;position:relative;z-index:1;max-width:520px;margin-left:auto;margin-right:auto;line-height:1.6}
.cta-buttons{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}
.btn-gplay{background:var(--teal);color:#fff;padding:.9rem 2rem;border-radius:14px;font-size:1rem;font-weight:600;text-decoration:none;font-family:var(--font);transition:all .2s;display:inline-flex;align-items:center;gap:.6rem;box-shadow:0 4px 20px rgba(122,160,136,.3)}
.btn-gplay:hover{background:var(--teal-light);transform:translateY(-2px);box-shadow:0 8px 30px rgba(122,160,136,.4)}
.cta-note{font-size:.82rem;color:var(--text-dim);margin-top:1.25rem;position:relative;z-index:1}

/* FOOTER */
footer{padding:3rem 2rem;border-top:1px solid var(--border);background:var(--bg-alt)}
footer .inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}
footer .brand{display:flex;align-items:center;gap:.6rem}
footer .brand svg{width:28px;height:28px}
footer .brand span{font-weight:700;color:var(--text);font-size:1.05rem}
footer .links{display:flex;gap:1.5rem}
footer .links a{text-decoration:none;color:var(--text-dim);font-size:.85rem;transition:color .2s}
footer .links a:hover{color:var(--teal-light)}
footer .copy{font-size:.8rem;color:var(--text-dim)}
.aussie-tag{font-size:.78rem;color:var(--text-dim);margin-top:.25rem}

/* MOBILE */
@media(max-width:900px){
.hero{grid-template-columns:1fr;padding:8rem 1.5rem 4rem;gap:3rem}
.hero-text h1{font-size:2.6rem}
.hero-visual{order:-1}
.phone-frame{width:270px}
.feature-list{grid-template-columns:1fr}
.steps{grid-template-columns:1fr 1fr;gap:1rem}
.about{grid-template-columns:1fr;gap:2rem}
.pricing-grid{grid-template-columns:1fr}
.nav-links{display:none}
footer .inner{flex-direction:column;gap:1rem;text-align:center}
footer .links{flex-wrap:wrap;justify-content:center}
}
@media(max-width:600px){
.steps{grid-template-columns:1fr}
.cta-card{padding:3rem 1.5rem}
.cta-card h2{font-family:var(--display);font-size:2rem}
}

/* FEATURE HIGHLIGHTS (homepage condensed) + features page */
.features>.section-label,.features>.section-title,.features>.section-desc{text-align:center}
.features>.section-desc{margin-left:auto;margin-right:auto}
.fh-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:1140px;margin:2.5rem auto 0}
.fh-more{text-align:center;margin-top:2.5rem}
.features-page-head{padding:9rem 2rem 0;max-width:1140px;margin:0 auto;text-align:center}
.features-back{display:inline-block;margin-bottom:1.5rem;color:var(--teal-light);text-decoration:none;font-size:.9rem;font-weight:600}
.features-back:hover{color:var(--teal)}
@media(max-width:900px){.fh-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.fh-grid{grid-template-columns:1fr}}

