<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
#da-root, #da-root * { box-sizing: border-box; }
#da-root {
--brand: #02e482;
--brand-dark: #00c46a;
--ink: #0a0f0c;
--ink-soft: #5a655f;
--paper: #ffffff;
--mist: #fbfffd;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--ink);
background: var(--paper);
-webkit-font-smoothing: antialiased;
}
#da-root a { text-decoration: none; color: inherit; }
#da-root ul { list-style: none; margin: 0; padding: 0; }
.da-blobfield { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.da-blob {
position: absolute;
width: 700px;
height: 700px;
background: rgba(2, 228, 130, 0.05);
filter: blur(70px);
top: -220px;
left: -180px;
border-radius: 53% 47% 34% 66% / 47% 41% 59% 53%;
animation: da-liquid 18s ease-in-out infinite alternate;
pointer-events: none;
}
.da-blob-a,
.da-blob-b,
.da-blob-c {
display: none;
}
@keyframes da-liquid {
0% {
transform: translate(0,0) rotate(0deg);
border-radius: 53% 47% 34% 66% / 47% 41% 59% 53%;
}
25% {
transform: translate(40px,-20px) rotate(8deg);
border-radius: 39% 61% 57% 43% / 62% 35% 65% 38%;
}
50% {
transform: translate(80px,30px) rotate(-6deg);
border-radius: 61% 39% 46% 54% / 44% 64% 36% 56%;
}
75% {
transform: translate(35px,60px) rotate(10deg);
border-radius: 45% 55% 63% 37% / 57% 42% 58% 43%;
}
100% {
transform: translate(0,20px) rotate(0deg);
border-radius: 53% 47% 34% 66% / 47% 41% 59% 53%;
}
}
@keyframes da-drift-a {
0%,100% { transform: translate(0,0) rotate(0deg); }
50% { transform: translate(40px,30px) rotate(15deg); }
}
@keyframes da-drift-b {
0%,100% { transform: translate(0,0) rotate(0deg); }
50% { transform: translate(-30px,-40px) rotate(-12deg); }
}
@keyframes da-drift-c {
0%,100% { transform: translate(0,0) scale(1); }
50% { transform: translate(-25px,20px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
.da-blob { animation: none !important; }
}
.da-glass,
.da-product-card,
.da-hero-stat {
position: relative;
border: 1px solid rgba(2,228,130,0.24);
background:
linear-gradient(135deg, rgba(2,228,130,0.13), rgba(255,255,255,0.50)),
radial-gradient(circle at 16% 12%, rgba(255,255,255,0.88), transparent 42%);
backdrop-filter: blur(30px) saturate(155%);
-webkit-backdrop-filter: blur(30px) saturate(155%);
box-shadow:
0 18px 46px rgba(30,45,40,0.055),
inset 0 1px 0 rgba(255,255,255,0.9);
border-radius: 22px;
}
.da-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
font-weight: 700;
font-size: 14px;
padding: 11px 20px;
border-radius: 999px;
border: none;
cursor: pointer;
white-space: nowrap;
transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease;
}
.da-btn-primary,
.da-btn-primary:link,
.da-btn-primary:visited {
background: var(--brand) !important;
color: #fff !important;
box-shadow: 0 14px 34px rgba(2,228,130,0.28);
}
.da-btn-primary:hover,
.da-btn-primary:active {
background: var(--brand-dark) !important;
color: #fff !important;
transform: translateY(-2px) scale(1.03);
box-shadow: 0 18px 42px rgba(2,228,130,0.36);
}
.da-btn-primary:hover {
transform: translateY(-2px) scale(1.03);
box-shadow: 0 18px 42px rgba(2,228,130,0.36);
background: var(--brand-dark);
}
#da-hero {
position: relative;
padding: 56px 32px 72px;
display: grid;
grid-template-columns: 2.1fr 1fr;
gap: 20px;
max-width: 1320px;
margin: 0 auto;
overflow: hidden;
}
.da-hero-main {
padding: 40px;
display: grid;
grid-template-columns: 0.9fr 1.6fr;
align-items: center;
gap: 32px;
z-index: 1;
}
.da-hero-main h1 {
font-size: clamp(24px, 2.4vw, 31px);
line-height: 1.25;
font-weight: 600;
margin: 0 0 12px;
letter-spacing: -0.01em;
white-space: nowrap;
}
.da-hero-main h1 em {
display: inline-block;
padding-right: 8px;
margin-right: -8px;
}
.da-hero-main h1 em {
font-style: italic;
background: linear-gradient(90deg, var(--brand-dark), var(--brand));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.da-hero-main p {
font-size: 14px;
color: var(--ink-soft);
margin: 0 0 22px;
max-width: 34ch;
}
.da-hero-media {
border-radius: 16px;
overflow: hidden;
aspect-ratio: 16/9;
box-shadow: 0 20px 40px rgba(2,20,12,0.18);
}
.da-hero-media {
width: 105%;
margin-left: 0%;
}
.da-hero-side {
padding: 22px;
display: flex;
flex-direction: column;
z-index: 1;
}
.da-eyebrow,
.da-badge {
display: inline-block;
background: rgba(2,228,130,0.16);
color: var(--brand-dark);
border: 1px solid rgba(2,228,130,0.22);
font-size: 10.5px;
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 5px 12px;
border-radius: 999px;
width: fit-content;
}
.da-hero-side h3 {
font-size: 18px;
font-weight: 600;
margin: 12px 0 6px;
line-height: 1.25;
}
.da-hero-side p {
font-size: 13px;
color: var(--ink-soft);
margin: 0 0 16px;
}
.da-hero-stats {
display: flex;
gap: 8px;
margin-bottom: 18px;
}
.da-hero-stat {
flex: 1;
text-align: center;
border-radius: 14px;
padding: 9px 6px;
}
.da-hero-stat svg {
width: 16px;
height: 16px;
margin-bottom: 5px;
color: var(--brand-dark);
}
.da-hero-stat span {
display: block;
font-size: 10px;
font-weight: 700;
color: var(--ink);
line-height: 1.25;
}
.da-hero-side .da-btn {
width: 100%;
padding: 10px 18px;
font-size: 13px;
margin-top: auto;
}
#da-assets-workspaces {
position: relative;
padding: 90px 32px 100px;
background: var(--mist);
overflow: hidden;
}
.da-section-inner {
position: relative;
z-index: 1;
max-width: 1240px;
margin: 0 auto;
}
.da-section-head {
text-align: center;
max-width: 620px;
margin: 0 auto 40px;
}
.da-section-head .da-eyebrow-text {
color: var(--brand-dark);
font-weight: 700;
font-size: 13px;
display: block;
margin-bottom: 10px;
}
.da-section-head h2 {
font-size: 32px;
font-weight: 600;
line-height: 1.2;
margin: 0 0 12px;
}
.da-section-head p {
font-size: 15px;
color: var(--ink-soft);
margin: 0;
}
.da-tabs {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 40px;
}
.da-tab-btn {
font-family: inherit;
font-size: 14px;
font-weight: 700;
padding: 12px 26px;
border-radius: 999px;
border: 1px solid rgba(2,228,130,0.24);
background: rgba(255,255,255,0.72);
color: var(--ink);
cursor: pointer;
transition: all 0.2s ease;
}
.da-tab-btn.da-tab-active {
background: var(--brand);
color: #fff !important;
border-color: var(--brand);
box-shadow: 0 14px 34px rgba(2,228,130,0.25);
}
.da-panel { display: none; }
.da-panel.da-panel-active { display: block; }
.da-card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.da-product-card {
padding: 26px 24px;
display: flex;
flex-direction: column;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.da-product-card:hover {
transform: translateY(-4px);
box-shadow:
0 24px 58px rgba(30,45,40,0.08),
inset 0 1px 0 rgba(255,255,255,0.92);
}
.da-product-card h4 {
font-size: 17px;
font-weight: 500;
margin: 10px 0 8px;
}
.da-product-card > p {
font-size: 13px;
color: var(--ink-soft);
margin: 0 0 14px;
line-height: 1.5;
}
.da-feature-list {
margin: 0 0 20px;
display: flex;
flex-direction: column;
gap: 7px;
}
.da-feature-list li {
font-size: 14px;
color: var(--ink);
display: flex;
gap: 8px;
align-items: flex-start;
}
.da-feature-list li svg {
width: 14px;
height: 14px;
flex-shrink: 0;
margin-top: 2px;
color: var(--brand-dark);
}
.da-product-footer {
margin-top: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-top: 14px;
border-top: 1px solid rgba(2,228,130,0.18);
}
.da-price {
display: flex;
flex-direction: column;
}
.da-price strong {
font-size: 20px;
font-weight: 500;
line-height: 1;
}
.da-price span {
font-size: 10.5px;
color: var(--ink-soft);
margin-top: 3px;
}
.da-product-footer .da-btn {
padding: 9px 18px;
font-size: 13px;
}
@media (max-width: 900px) {
#da-hero {
grid-template-columns: 1fr;
padding: 32px 18px 48px;
}
.da-hero-main {
grid-template-columns: 1fr;
}
.da-hero-media {
order: -1;
}
.da-hero-main h1 {
white-space: normal;
font-size: 30px;
}
.da-card-grid {
grid-template-columns: 1fr;
}
.da-tabs {
flex-direction: column;
}
}
</style>
<div id="da-root">
<section id="da-hero">
<div class="da-blobfield">
<div class="da-blob da-blob-a"></div>
<div class="da-blob da-blob-b"></div>
<div class="da-blob da-blob-c"></div>
</div>
<div class="da-hero-main da-glass">
<div>
<h1>The <em>all-in-one toolkit</em><br>to edit better videos.</h1>
<p>Professional LUTs, motion graphics, backgrounds, overlays & sound effects.</p>
<a href="#da-assets-workspaces" class="da-btn da-btn-primary">Find Your Next Asset</a>
</div>
<div class="da-hero-media">
<img src="https://github.com/user-attachments/assets/91cf08a5-c41a-4d1a-9bfb-0e133993f87a" alt="Editing at night in CapCut, neon workspace">
</div>
</div>
<div class="da-hero-side da-glass">
<span class="da-eyebrow">Upcoming Course</span>
<h3>Edit Cinematic Videos in CapCut</h3>
<p>Learn professional editing techniques to create cinematic videos that stand out.</p>
<div class="da-hero-stats">
<div class="da-hero-stat">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>
<span>Step-by-step video lessons</span>
</div>
<div class="da-hero-stat">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg>
<span>Practice projects</span>
</div>
<div class="da-hero-stat">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>
<span>Lifetime access</span>
</div>
</div>
<a href="https://join.dinaandagnes.com/capcut-creator-mastery" target="_blank" rel="noopener" class="da-btn da-btn-primary">Join the Waitlist →</a>
</div>
</section>
<section id="da-assets-workspaces">
<div class="da-blobfield">
<div class="da-blob da-blob-a"></div>
<div class="da-blob da-blob-b"></div>
<div class="da-blob da-blob-c"></div>
</div>
<div class="da-section-inner">
<div class="da-section-head">
<span class="da-eyebrow-text">Assets for your edits. Workspace for your system.</span>
<h2>Pick Your Tools.<br>Upgrade Your Edits.</h2>
<p>Make better videos in less time and keep your entire workflow organised.</p>
</div>
<div class="da-tabs">
<button class="da-tab-btn da-tab-active" data-da-tab="assets">Creator Assets</button>
<button class="da-tab-btn" data-da-tab="workspace">The Creator Workspace</button>
</div>
<div class="da-panel da-panel-active" data-da-panel="assets">
<div class="da-card-grid">
<div class="da-product-card">
<span class="da-badge">Best Value</span>
<h4>Creator Asset Pack</h4>
<p>Everything you need to level up your edits in one place.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>LUTs, backgrounds, overlays, SFX, graphics</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Save 3+ hours per edit</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>100+ assets that work together seamlessly</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£39</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/creator-asset-pack" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<span class="da-badge">Most Popular</span>
<h4>Motion Graphics</h4>
<p>15 motion graphics with 50+ variations to make your edits clearer, more engaging, and professional.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>UI elements, shapes, and animated assets</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Perfect for storytelling and engagement</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Built for fast, beginner-friendly use</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£24</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/motion-graphics" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<h4>Sound Effects</h4>
<p>64 different sound effects with over 100 variations to make your edits sharper, punchier, and more precise.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Clicks, impacts, whooshes and movement sounds</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Designed for viral-style editing</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Easy to layer directly in CapCut</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£19</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/sound-effects" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<h4>Motion Backgrounds</h4>
<p>20 motion backgrounds to make your videos more dynamic and visually engaging.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Ready-to-use animated backgrounds</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Perfect for intros, overlays, and scene</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Exported in high quality for any project</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£15</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/motion-backgrounds" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<h4>Overlays</h4>
<p>10 overlays to make your visuals more polished and refined.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Light leaks</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Drag-and-drop into any edit</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Built to enhance, not distract</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£15</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/overlays" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<h4>Urban Cinematic LUTs</h4>
<p>4 LUTs to make your footage cleaner, richer, and more cinematic.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Clean, contrast-rich cinematic urban looks</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Apple Log → Rec.709 conversion included</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Designed for all editing software including CapCut</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£9</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/urban-cinematic-luts" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
</div>
</div>
<div class="da-panel" data-da-panel="workspace">
<div class="da-card-grid">
<div class="da-product-card">
<span class="da-badge">Demo</span>
<h4>Pro Preview</h4>
<p>Try the system Pro creators run their business on, free.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>A working preview of the full Pro system</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>See exactly how creators plan, track and organise output</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>No card required, upgrade only if it earns it</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£0</strong><span>Preview only</span></div>
<a class="da-btn da-btn-primary" href="https://join.dinaandagnes.com/creator-workspace-pro-demo" target="_blank" rel="noopener">Start Demo</a>
</div>
</div>
<div class="da-product-card">
<h4>The Creator Workspace Lite</h4>
<p>Organise your content and stay consistent without overwhelm.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Plan and track your content in one place</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Simple system for beginners</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Stay consistent without overcomplicating your workflow</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£29</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/the-creator-workspace-lite" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
<div class="da-product-card">
<span class="da-badge">Most Popular</span>
<h4>The Creator Workspace Pro</h4>
<p>Run your entire creator business from one system.</p>
<ul class="da-feature-list">
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Content, ideas, and production fully organised</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Track growth, income, clients and performance</li>
<li><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><path d="M20 6 9 17l-5-5"/></svg>Built for creators who want structure and control</li>
</ul>
<div class="da-product-footer">
<div class="da-price"><strong>£69</strong><span>One-time payment</span></div>
<a class="da-btn da-btn-primary" href="https://checkout.dinaandagnes.com/checkout/the-creator-workspace-pro" target="_blank" rel="noopener">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<script>
(function(){
var tabs = document.querySelectorAll('#da-root [data-da-tab]');
var panels = document.querySelectorAll('#da-root [data-da-panel]');
tabs.forEach(function(tab){
tab.addEventListener('click', function(){
tabs.forEach(function(t){ t.classList.remove('da-tab-active'); });
panels.forEach(function(p){ p.classList.remove('da-panel-active'); });
tab.classList.add('da-tab-active');
document.querySelector('#da-root [data-da-panel="' + tab.getAttribute('data-da-tab') + '"]').classList.add('da-panel-active');
});
});
})();
</script>