Shipping policy
:root { --bg: #fafafa; --bg-dark: #0a0a0a; --text: #0a0a0a; --text-muted: #6b6b6b; --text-light: #9a9a9a; --accent: #21E783; --accent-dark: #18b569; --line: #e5e5e5; --line-dark: #1a1a1a; --card: #ffffff; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Sora', -apple-system, sans-serif; background: var(--bg); color: var(--text); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; } .header { position: sticky; top: 0; background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); z-index: 100; padding: 16px 40px; } .header-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; } .logo { display: block; text-decoration: none; } .logo img { display: block; height: 36px; width: auto; } .header-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; } .hero { background: var(--bg-dark); color: white; padding: 80px 40px 120px; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 750px; height: 750px; background: radial-gradient(circle, rgba(33, 231, 131, 0.15) 0%, transparent 60%); pointer-events: none; } .hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; } .breadcrumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; } .breadcrumb-line { width: 40px; height: 1px; background: var(--accent); } .hero-title { font-size: clamp(48px, 8vw, 120px); font-weight: 800; line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 32px; } .hero-title .accent { color: var(--accent); font-style: italic; font-weight: 300; } .hero-sub { font-size: 18px; color: rgba(255, 255, 255, 0.7); max-width: 600px; line-height: 1.6; } .hero-meta { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); max-width: 700px; } .hero-meta-item { font-family: 'JetBrains Mono', monospace; } .hero-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); margin-bottom: 8px; } .hero-meta-value { font-size: 14px; color: white; font-weight: 500; } .main { max-width: 1280px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; } .toc { position: sticky; top: 110px; align-self: start; height: fit-content; max-height: calc(100vh - 130px); overflow-y: auto; } .toc::-webkit-scrollbar { width: 4px; } .toc::-webkit-scrollbar-track { background: transparent; } .toc::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; } .toc-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); } .toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; } .toc-list a { display: flex; gap: 12px; padding: 8px 0; font-size: 12px; color: var(--text-muted); text-decoration: none; transition: all 0.2s ease; line-height: 1.4; } .toc-list a:hover { color: var(--text); } .toc-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-light); flex-shrink: 0; padding-top: 1px; } .content { max-width: 720px; } .intro { padding: 36px 40px; background: white; border-left: 3px solid var(--accent); border-radius: 4px; margin-bottom: 60px; } .intro p { font-size: 16px; color: #2a2a2a; line-height: 1.7; margin-bottom: 12px; } .intro p:last-child { margin-bottom: 0; } .intro strong { font-weight: 600; } .section { padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line); } .section:last-child { border-bottom: none; } .section-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; } .section-num::after { content: ''; flex: 1; height: 1px; background: var(--line); max-width: 60px; } .section-title { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 20px; } .section p { font-size: 15px; color: #2a2a2a; margin-bottom: 14px; line-height: 1.7; } .section strong { font-weight: 600; color: var(--text); } .section a { color: var(--accent-dark); text-decoration: none; border-bottom: 1px solid var(--accent); transition: all 0.2s ease; padding-bottom: 1px; } .section a:hover { background: var(--accent); color: #000; } .section ul { list-style: none; margin: 14px 0 18px; padding: 0; } .section ul li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 14px; color: #2a2a2a; line-height: 1.7; } .section ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 1px; background: var(--accent); } /* Highlight Card */ .highlight { background: var(--bg-dark); color: white; padding: 28px 32px; border-radius: 4px; margin: 20px 0; position: relative; overflow: hidden; } .highlight::before { content: '!'; position: absolute; top: 22px; right: 26px; width: 26px; height: 26px; background: var(--accent); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; } .highlight-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 10px; } .highlight p { color: rgba(255, 255, 255, 0.9); margin: 0; font-size: 14px; } /* Legal Notice (uppercase boxed) */ .legal-notice { background: #f5f5f5; border: 1px solid var(--line); padding: 24px 28px; border-radius: 4px; margin: 20px 0; font-size: 13px; color: #2a2a2a; line-height: 1.7; text-transform: uppercase; letter-spacing: 0.02em; font-family: 'JetBrains Mono', monospace; } .legal-notice strong { color: var(--text); font-weight: 500; } /* Contact Card */ .contact-info { background: white; border: 1px solid var(--line); border-radius: 4px; padding: 28px 32px; margin: 20px 0; } .contact-info-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; } .contact-info-row:last-child { border-bottom: none; } .contact-info-row:first-child { padding-top: 0; } .contact-info-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); align-self: center; } .contact-info-value { color: var(--text); font-weight: 500; } /* Footer */ .footer { background: var(--bg-dark); color: white; padding: 80px 40px 40px; margin-top: 80px; } .footer-inner { max-width: 1280px; margin: 0 auto; } .footer-cta { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; padding-bottom: 60px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .footer-cta h2 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 0.95; } .footer-cta h2 .accent { color: var(--accent); } .contact-card { text-align: right; font-family: 'JetBrains Mono', monospace; font-size: 12px; } .contact-card-label { color: var(--text-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.15em; } .contact-card-value { color: white; font-size: 16px; font-family: 'Sora', sans-serif; font-weight: 500; } .footer-bottom { margin-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 32px; } .footer-logo img { height: 32px; width: auto; display: block; } .footer-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; text-align: right; } .footer-meta div + div { margin-top: 4px; } @media (max-width: 900px) { .main { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; } .toc { position: static; padding-bottom: 32px; border-bottom: 1px solid var(--line); max-height: none; } .header, .hero, .footer { padding-left: 24px; padding-right: 24px; } .hero { padding-top: 60px; padding-bottom: 80px; } .hero-meta { grid-template-columns: 1fr; gap: 24px; } .footer-cta { grid-template-columns: 1fr; gap: 32px; } .contact-card { text-align: left; } .footer-bottom { flex-direction: column; gap: 24px; align-items: flex-start; } .footer-meta { text-align: left; } .header-meta { display: none; } .logo img { height: 28px; } .contact-info-row { grid-template-columns: 1fr; gap: 4px; } } .hero-title, .hero-sub, .hero-meta { animation: fadeUp 0.8s ease forwards; opacity: 0; transform: translateY(20px); } .hero-sub { animation-delay: 0.1s; } .hero-meta { animation-delay: 0.2s; } @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
Terms of
Service.
The rules of the road. These Terms govern your use of Momentum's website, products, and services. Please read them carefully — they include important information about your rights and responsibilities.
- 00Overview
- 01Access & Account
- 02Our Products
- 03Orders
- 04Prices & Billing
- 05Shipping & Delivery
- 06Intellectual Property
- 07Optional Tools
- 08Third-Party Links
- 09Relationship with Shopify
- 10Privacy Policy
- 11Feedback
- 12Errors & Inaccuracies
- 13Prohibited Uses
- 14Termination
- 15Disclaimer of Warranties
- 16Limitation of Liability
- 17Indemnification
- 18Severability
- 19Waiver & Entire Agreement
- 20Assignment
- 21Governing Law
- 22Changes to Terms
- 23Contact
Welcome to Momentum. The terms "we", "us", and "our" refer to Momentum. We operate this store and website, including all related information, content, features, tools, products and services to provide you, the customer, with a curated shopping experience (the "Services"). Momentum is powered by Shopify, which enables us to provide the Services to you.
These Terms of Service, together with any policies referenced herein (the "Terms"), describe your rights and responsibilities when you use the Services. They include important information about your legal rights, including warranty disclaimers and limitations of liability.
By visiting, interacting with, or using our Services, you agree to be bound by these Terms and our Privacy Policy. If you do not agree, you should not use or access our Services.
Access & Account
By agreeing to these Terms, you represent that you are at least the age of majority in your state or territory of residence, and you have given consent for any minor dependents to use the Services on devices you own, purchase, or manage.
To use the Services — including browsing our online store or purchasing products — you may be asked to provide certain information, such as your email address, billing, payment, and shipping details. You represent and warrant that all information provided is correct, current, and complete, and that you have all rights necessary to provide it.
You are solely responsible for maintaining the security of your account credentials and for all activity under your account. You may not transfer, sell, assign, or license your account to any other person.
Our Products
We have made every effort to provide an accurate representation of our products and services. However, colors and product appearance may differ from how they appear on your screen due to your device type, settings, and configuration.
We do not warrant that the appearance or quality of any products purchased will meet your expectations or be identical to how they are depicted online.
All product descriptions are subject to change at any time without notice at our sole discretion. We reserve the right to discontinue any product at any time and may limit quantities offered to any person, geographic region, or jurisdiction on a case-by-case basis.
Orders
When you place an order, you are making an offer to purchase. Momentum reserves the right to accept or decline your order for any reason at its discretion. Your order is not accepted until we confirm acceptance, and we must receive and process your payment before your order is accepted.
Please review your order carefully before submitting, as we may be unable to accommodate cancellation requests after acceptance. If we do not accept, change, or cancel an order, we will attempt to notify you via the email, billing address, or phone number provided at the time of order.
Your purchases are subject to return or exchange solely in accordance with our Return & Refund Policy.
You represent and warrant that your purchases are for your own personal or household use and not for commercial resale or export.
Prices & Billing
Prices, discounts, and promotions are subject to change without notice. The price charged will be the price in effect at the time of order, as set out in your order confirmation email. Unless otherwise stated, posted prices include GST but do not include shipping or handling charges.
Prices in our online store may differ from prices in third-party stores. We may offer promotions from time to time governed by separate terms. If there is a conflict between promotion terms and these Terms, the promotion terms govern.
You agree to provide current, complete, and accurate purchase, payment, and account information for all purchases. You agree to promptly update your account information — including email address, credit card numbers, and expiration dates — so we can complete transactions and contact you as needed.
You represent and warrant that:
- The credit card information you provide is true, correct, and complete
- You are duly authorised to use the card for the purchase
- Charges incurred will be honoured by your credit card company
- You will pay all charges at the posted prices, including shipping, handling, and applicable taxes
Shipping & Delivery
We are not liable for shipping and delivery delays. All delivery times are estimates only and are not guaranteed. We are not responsible for delays caused by shipping carriers, customs processing, or events outside our control.
Once we transfer products to the carrier, title and risk of loss passes to you.
Intellectual Property
Our Services — including all trademarks, brands, text, displays, images, graphics, product reviews, video, audio, and the design, selection, and arrangement thereof — are owned by Momentum, its affiliates, or licensors, and are protected by Australian and foreign intellectual property laws.
These Terms permit you to use the Services for your personal, non-commercial use only. You must not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any material from the Services without our prior written consent.
The Momentum™ name, logo, product and service names, designs, and slogans are trademarks of Momentum or its affiliates. You must not use them without prior written permission. Shopify's name, logo, and trademarks are property of Shopify. All other trademarks belong to their respective owners.
Optional Tools
You may be provided access to third-party tools as part of the Services, which we neither monitor nor control.
You acknowledge that we provide access to such tools "as is" and "as available" without warranties, representations, or conditions of any kind, and without endorsement. We have no liability arising from your use of optional third-party tools. Any use of such tools is entirely at your own risk and discretion.
We may offer new features through the Services in the future. Such features shall be deemed part of the Services and subject to these Terms.
Third-Party Links
The Services may contain materials and hyperlinks to third-party websites. We are not responsible for examining or evaluating the content or accuracy of any third-party materials. If you choose to access these sites, you do so at your own risk.
We are not liable for any harm or damages related to your access of third-party websites or your purchase or use of any products or services from third parties. Please review third-party policies carefully before engaging in any transaction. Complaints regarding third-party products and services should be directed to the third party.
Relationship with Shopify
Momentum is powered by Shopify, which enables us to provide the Services to you. However, any sales and purchases you make in our store are made directly with Momentum.
By using the Services, you acknowledge and agree that Shopify is not responsible for any aspect of any sales between you and Momentum, including any injury, damage, or loss resulting from purchased products and services. You hereby expressly release Shopify and its affiliates from all claims, damages, and liabilities arising from your purchases and transactions with Momentum.
Privacy Policy
All personal information we collect through the Services is subject to our Privacy Policy, and certain personal information may be subject to Shopify's Privacy Policy. By using the Services, you acknowledge that you have read these privacy policies.
Because the Services are hosted by Shopify, Shopify collects and processes personal information about your use of the Services. Information you submit may be transmitted to and shared with Shopify and third parties that may be located in countries other than where you reside.
Feedback
If you submit ideas, suggestions, feedback, reviews, proposals, or other content (collectively, "Feedback"), you grant us a perpetual, worldwide, sublicensable, royalty-free license to use, reproduce, modify, publish, distribute, and display such Feedback in any medium for any purpose, including commercial use.
You represent and warrant that:
- You own or have all necessary rights to all Feedback
- You have disclosed any compensation or incentives received in connection with the Feedback
- Your Feedback complies with these Terms
We have no obligation to maintain Feedback in confidence, pay compensation for it, or respond to it. We may, but have no obligation to, monitor, edit, or remove Feedback we determine to be unlawful, offensive, or in violation of these Terms.
Errors, Inaccuracies & Omissions
Occasionally there may be information on or in the Services that contains typographical errors, inaccuracies, or omissions related to product descriptions, pricing, promotions, offers, shipping charges, transit times, or availability.
We reserve the right to correct any errors, inaccuracies, or omissions, and to change or update information or cancel orders if any information is inaccurate at any time without prior notice — including after you have submitted your order.
Prohibited Uses
You may access and use the Services for lawful purposes only. You may not access or use the Services, directly or indirectly:
- For any unlawful or malicious purpose
- To violate any international, federal, state, or local laws or regulations
- To infringe upon our intellectual property rights or those of others
- To harass, abuse, insult, harm, defame, or intimidate any person
- To transmit false or misleading information
- To send any advertising, junk mail, chain letter, spam, or similar solicitation
- To impersonate any other person or entity
- To upload viruses or other malicious code
- To collect or track the personal information of others
- To spam, phish, pharm, pretext, spider, crawl, or scrape
- To interfere with or circumvent the security features of the Services
We reserve the right to suspend, disable, or terminate your account at any time, without notice, if we determine that you have violated any part of these Terms.
Termination
We may terminate this agreement or your access to the Services at our sole discretion at any time without notice, and you will remain liable for all amounts due up to and including the date of termination.
The following sections will continue to apply following any termination: Intellectual Property, Feedback, Termination, Disclaimer of Warranties, Limitation of Liability, Indemnification, Severability, Waiver & Entire Agreement, Assignment, Governing Law, Privacy Policy, and any other provisions that by their nature should survive.
Disclaimer of Warranties
The information presented on or through the Services is made available solely for general information purposes. We do not warrant the accuracy, completeness, or usefulness of this information. Any reliance on such information is strictly at your own risk.
We do not guarantee, represent, or warrant that your use of the Services will be uninterrupted, timely, secure, or error-free. Some jurisdictions limit or do not allow the disclaimer of implied warranties, so the above disclaimer may not apply to you.
Limitation of Liability
This limitation applies even if advised of the possibility of such damages. Some jurisdictions do not allow the exclusion or limitation of liability for consequential damages. In such jurisdictions, our liability shall be limited to the maximum extent permitted by law.
Nothing in these Terms excludes, restricts, or modifies any guarantee, condition, warranty, right, or remedy implied or imposed by the Australian Consumer Law that cannot lawfully be excluded.
Indemnification
You agree to indemnify, defend, and hold harmless Momentum, Shopify, and our affiliates, partners, officers, directors, employees, agents, contractors, licensors, and service providers from any losses, damages, liabilities, or claims — including reasonable attorneys' fees — payable to any third party due to or arising out of:
- Your breach of these Terms or the documents they incorporate by reference
- Your violation of any law or the rights of a third party
- Your access to and use of the Services
We will notify you of any indemnifiable claim. We may control the defense and settlement of such claims at your expense, including choice of counsel, but will not settle any claim requiring non-monetary obligations from you without your consent (not to be unreasonably withheld).
Severability
If any provision of these Terms is determined to be unlawful, void, or unenforceable, that provision shall nonetheless be enforceable to the fullest extent permitted by law, and the unenforceable portion shall be deemed severed from these Terms. Such determination shall not affect the validity and enforceability of any other remaining provisions.
Waiver & Entire Agreement
Our failure to exercise or enforce any right or provision of these Terms shall not constitute a waiver of such right or provision.
These Terms and any policies posted by us on this site constitute the entire agreement between you and us, governing your use of the Services and superseding any prior or contemporaneous agreements, communications, and proposals — whether oral or written. Any ambiguities in interpretation shall not be construed against the drafting party.
Assignment
You may not delegate, transfer, or assign this Agreement or any of your rights or obligations under these Terms without our prior written consent. Any such attempt will be null and void. We may transfer, assign, or delegate these Terms and our rights and obligations without consent or notice to you.
Governing Law
These Terms and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of New South Wales, Australia, and the federal laws of Australia applicable therein.
You and Momentum consent to the exclusive jurisdiction of the courts located in New South Wales, Australia for any dispute arising from these Terms.
Changes to Terms of Service
You can review the most current version of the Terms at any time on this page.
We reserve the right, at our sole discretion, to update, change, or replace any part of these Terms by posting updates and changes to our website. It is your responsibility to check this page periodically for changes. We will notify you of any material changes in accordance with applicable law, and such changes will be effective on the date specified in the notice.
Your continued use of or access to the Services following the posting of any changes constitutes acceptance of those changes.
Contact Information
Questions about the Terms of Service should be sent to us at the contact information below.
These Terms are governed by Australian Consumer Law and the laws of New South Wales.