<style>
#da-dream-section,
#da-dream-section * {
box-sizing: border-box;
}
#da-dream-section {
--da-green: #00dc82;
--da-green-dark: #00ad67;
--da-black: #1d1d1f;
--da-grey: #656a66;
--da-background: #f7f8f5;
--da-border: #d8e5dc;
position: relative;
width: 100%;
padding: clamp(70px, 8vw, 120px) 24px 80px;
overflow: hidden;
color: var(--da-black);
background: var(--da-background);
font-family: inherit;
isolation: isolate;
}
#da-dream-section::before {
content: "";
position: absolute;
z-index: -1;
top: 50%;
left: 50%;
width: min(1050px, 90vw);
height: 70%;
pointer-events: none;
background: radial-gradient(
ellipse at center,
rgba(0, 220, 130, 0.14) 0%,
rgba(0, 220, 130, 0.07) 35%,
rgba(0, 220, 130, 0.02) 58%,
transparent 78%
);
filter: blur(55px);
transform: translate(-50%, -50%);
}
#da-dream-section .da-container {
width: 100%;
max-width: 1240px;
margin: 0 auto;
}
#da-dream-section .da-heading {
max-width: 900px;
margin: 0 auto clamp(45px, 6vw, 70px);
text-align: center;
}
#da-dream-section .da-eyebrow {
display: inline-flex;
align-items: center;
gap: 9px;
margin: 0 0 24px;
padding: 10px 17px;
border: 1px solid rgba(0, 220, 130, 0.55);
border-radius: 999px;
color: var(--da-green-dark);
background: rgba(255, 255, 255, 0.55);
font-size: 13px;
font-weight: 800;
line-height: 1;
letter-spacing: 0.13em;
text-transform: uppercase;
}
#da-dream-section .da-eyebrow::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--da-green);
box-shadow: 0 0 0 5px rgba(0, 220, 130, 0.12);
}
#da-dream-section h2 {
max-width: 900px;
margin: 0 auto 24px;
color: var(--da-black);
font-size: clamp(40px, 4.5vw, 62px);
font-weight: 600;
line-height: 1.05;
letter-spacing: -0.045em;
text-wrap: balance;
}
#da-dream-section h2 span {
color: var(--da-green);
}
#da-dream-section .da-intro {
max-width: 720px;
margin: 0 auto;
color: var(--da-grey);
font-size: clamp(18px, 1.7vw, 21px);
line-height: 1.65;
text-wrap: balance;
}
#da-dream-section .da-card-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
margin-bottom: 28px;
}
#da-dream-section .da-card {
min-height: 285px;
padding: 34px;
border: 2px solid var(--da-green);
border-radius: 27px;
background: linear-gradient(
120deg,
rgba(255, 255, 255, 0.9) 0%,
rgba(240, 249, 244, 0.92) 48%,
rgba(216, 247, 232, 0.9) 100%
);
box-shadow: 0 18px 50px rgba(25, 55, 38, 0.06);
transition:
transform 220ms ease,
box-shadow 220ms ease;
}
#da-dream-section .da-card:hover {
transform: translateY(-5px);
box-shadow: 0 24px 60px rgba(25, 55, 38, 0.11);
}
#da-dream-section .da-number {
display: grid;
width: 52px;
height: 52px;
margin-bottom: 45px;
place-items: center;
border-radius: 50%;
color: #fff;
background: var(--da-green);
font-size: 15px;
font-weight: 800;
}
#da-dream-section .da-card h3 {
margin: 0 0 13px;
color: var(--da-black);
font-size: 25px;
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.025em;
}
#da-dream-section .da-card p {
margin: 0;
color: var(--da-grey);
font-size: 16px;
line-height: 1.65;
}
#da-dream-section .da-future {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(34px, 5vw, 62px);
padding: clamp(40px, 6vw, 70px);
border: 1px solid rgba(0, 220, 130, 0.55);
border-radius: 32px;
color: #fff;
background:
radial-gradient(
circle at 88% 18%,
rgba(0, 220, 130, 0.14),
transparent 38%
),
linear-gradient(
135deg,
rgba(29, 29, 31, 0.97),
rgba(29, 29, 31, 0.92)
);
box-shadow: 0 28px 75px rgba(20, 25, 22, 0.16);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}
#da-dream-section .da-future-label {
margin: 0 0 17px;
color: var(--da-green);
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}
#da-dream-section .da-future h3 {
margin: 0 0 31px;
color: #fff;
font-size: clamp(27px, 2.4vw, 32px);
font-weight: 650;
line-height: 1.12;
letter-spacing: -0.035em;
white-space: nowrap;
}
#da-dream-section .da-list {
display: grid;
gap: 17px;
margin: 0;
padding: 0;
list-style: none;
}
#da-dream-section .da-list li {
position: relative;
margin: 0;
padding-left: 39px;
color: rgba(255, 255, 255, 0.75);
font-size: 16px;
line-height: 1.55;
}
#da-dream-section .da-list li::before {
content: "✓";
position: absolute;
top: 1px;
left: 0;
display: grid;
width: 25px;
height: 25px;
place-items: center;
border-radius: 50%;
color: #fff;
background: var(--da-green);
font-size: 14px;
font-weight: 900;
}
#da-dream-section .da-cta-panel {
align-self: center;
padding: clamp(29px, 3.5vw, 42px);
border: 1px solid rgba(0, 220, 130, 0.48);
border-radius: 25px;
background:
radial-gradient(
circle at 100% 0%,
rgba(0, 220, 130, 0.12),
transparent 45%
),
rgba(29, 29, 31, 0.7);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.08),
0 22px 55px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
#da-dream-section .da-cta-panel h4 {
margin: 0 0 15px;
color: #fff;
font-size: clamp(23px, 2vw, 29px);
font-weight: 650;
line-height: 1.12;
letter-spacing: -0.035em;
white-space: nowrap;
}
#da-dream-section .da-cta-panel > p {
margin: 0 0 27px;
color: rgba(255, 255, 255, 0.68);
font-size: 16px;
line-height: 1.65;
}
#da-dream-section .da-course-facts {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 9px;
margin-bottom: 27px;
}
#da-dream-section .da-fact {
min-width: 0;
padding: 15px 6px;
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 13px;
text-align: center;
background: rgba(255, 255, 255, 0.06);
}
#da-dream-section .da-fact strong {
display: block;
margin-bottom: 4px;
color: var(--da-green);
font-size: 19px;
line-height: 1.1;
}
#da-dream-section .da-fact span {
color: rgba(255, 255, 255, 0.62);
font-size: 11px;
line-height: 1.2;
text-transform: uppercase;
}
#da-dream-section .da-button {
display: inline-flex;
width: 100%;
min-height: 58px;
align-items: center;
justify-content: center;
gap: 10px;
padding: 16px 20px;
border: 2px solid var(--da-green);
border-radius: 999px;
color: #fff;
background: var(--da-green);
box-shadow: 0 14px 35px rgba(0, 220, 130, 0.22);
font-size: 15px;
font-weight: 800;
line-height: 1.2;
text-align: center;
text-decoration: none;
transition:
transform 200ms ease,
background 200ms ease,
color 200ms ease;
}
#da-dream-section .da-button:hover {
transform: translateY(-3px);
color: var(--da-black);
background: #fff;
}
#da-dream-section .da-button span {
font-size: 20px;
transition: transform 200ms ease;
}
#da-dream-section .da-button:hover span {
transform: translateX(4px);
}
#da-dream-section .da-button:focus-visible {
outline: 3px solid #fff;
outline-offset: 4px;
}
#da-dream-section .da-small-print {
margin: 15px 0 0 !important;
color: rgba(255, 255, 255, 0.52) !important;
font-size: 12px !important;
text-align: center;
}
#da-dream-section .da-fit-section {
padding-top: clamp(75px, 9vw, 125px);
}
#da-dream-section .da-fit-heading {
max-width: 760px;
margin: 0 auto 45px;
text-align: center;
}
#da-dream-section .da-fit-heading .da-eyebrow {
margin-bottom: 22px;
}
#da-dream-section .da-fit-heading h3 {
margin: 0 0 17px;
color: var(--da-black);
font-size: clamp(38px, 4vw, 56px);
font-weight: 600;
line-height: 1.08;
letter-spacing: -0.04em;
text-wrap: balance;
}
#da-dream-section .da-fit-heading p {
max-width: 630px;
margin: 0 auto;
color: var(--da-grey);
font-size: 18px;
line-height: 1.65;
}
#da-dream-section .da-fit-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
#da-dream-section .da-fit-card {
min-width: 0;
padding: clamp(32px, 4vw, 46px);
border-radius: 28px;
box-shadow: 0 20px 55px rgba(25, 55, 38, 0.07);
}
#da-dream-section .da-fit-card.da-for {
border: 2px solid var(--da-green);
background: linear-gradient(
125deg,
rgba(255, 255, 255, 0.9) 0%,
rgba(235, 249, 242, 0.94) 52%,
rgba(214, 246, 230, 0.94) 100%
);
}
#da-dream-section .da-fit-card.da-not-for {
border: 1px solid rgba(0, 220, 130, 0.45);
background:
radial-gradient(
circle at 100% 0%,
rgba(0, 220, 130, 0.11),
transparent 42%
),
rgba(29, 29, 31, 0.94);
box-shadow: 0 24px 65px rgba(15, 20, 17, 0.14);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}
#da-dream-section .da-fit-icon {
display: grid;
width: 48px;
height: 48px;
margin-bottom: 28px;
place-items: center;
border-radius: 50%;
font-size: 21px;
font-weight: 800;
}
#da-dream-section .da-for .da-fit-icon,
#da-dream-section .da-not-for .da-fit-icon {
color: #fff;
background: var(--da-green);
}
#da-dream-section .da-fit-card h4 {
margin: 0 0 25px;
color: var(--da-black);
font-size: clamp(23px, 2vw, 29px);
font-weight: 650;
line-height: 1.15;
letter-spacing: -0.03em;
white-space: nowrap;
}
#da-dream-section .da-not-for h4 {
color: #fff;
}
#da-dream-section .da-fit-list {
display: grid;
gap: 18px;
margin: 0;
padding: 0;
list-style: none;
}
#da-dream-section .da-fit-list li {
position: relative;
margin: 0;
padding-left: 37px;
color: #555b56;
font-size: 16px;
line-height: 1.55;
}
#da-dream-section .da-not-for .da-fit-list li {
color: rgba(255, 255, 255, 0.7);
}
#da-dream-section .da-fit-list li::before {
position: absolute;
top: 0;
left: 0;
display: grid;
width: 24px;
height: 24px;
place-items: center;
border-radius: 50%;
font-size: 13px;
font-weight: 900;
}
#da-dream-section .da-for .da-fit-list li::before {
content: "✓";
color: #fff;
background: var(--da-green);
}
#da-dream-section .da-not-for .da-fit-list li::before {
content: "–";
color: #fff;
background: rgba(0, 220, 130, 0.82);
}
@media (max-width: 1100px) {
#da-dream-section .da-future h3,
#da-dream-section .da-cta-panel h4 {
white-space: normal;
}
#da-dream-section .da-fit-card h4 {
font-size: 24px;
}
}
@media (max-width: 900px) {
#da-dream-section .da-card-grid,
#da-dream-section .da-future,
#da-dream-section .da-fit-grid {
grid-template-columns: 1fr;
}
#da-dream-section .da-card {
min-height: auto;
}
#da-dream-section .da-number {
margin-bottom: 32px;
}
#da-dream-section .da-fit-card h4 {
white-space: normal;
}
}
@media (max-width: 600px) {
#da-dream-section {
padding: 58px 15px 80px;
}
#da-dream-section .da-heading {
margin-bottom: 40px;
}
#da-dream-section .da-eyebrow {
padding: 9px 13px;
font-size: 11px;
letter-spacing: 0.1em;
}
#da-dream-section h2 {
font-size: 36px;
line-height: 1.08;
}
#da-dream-section .da-intro {
font-size: 17px;
line-height: 1.6;
}
#da-dream-section .da-card-grid {
gap: 15px;
}
#da-dream-section .da-card {
padding: 26px;
border-radius: 23px;
}
#da-dream-section .da-card h3 {
font-size: 23px;
}
#da-dream-section .da-card p {
font-size: 15px;
}
#da-dream-section .da-future {
gap: 38px;
padding: 32px 21px;
border-radius: 25px;
}
#da-dream-section .da-future h3 {
font-size: 30px;
white-space: normal;
}
#da-dream-section .da-list {
gap: 15px;
}
#da-dream-section .da-list li {
padding-left: 35px;
font-size: 15px;
}
#da-dream-section .da-cta-panel {
padding: 27px 18px;
border-radius: 21px;
}
#da-dream-section .da-cta-panel h4 {
font-size: 25px;
white-space: normal;
}
#da-dream-section .da-cta-panel > p {
font-size: 15px;
}
#da-dream-section .da-course-facts {
gap: 6px;
}
#da-dream-section .da-fact {
padding: 13px 3px;
}
#da-dream-section .da-fact strong {
font-size: 17px;
}
#da-dream-section .da-fact span {
font-size: 9px;
}
#da-dream-section .da-button {
min-height: 54px;
padding: 14px 13px;
font-size: 13px;
}
#da-dream-section .da-fit-section {
padding-top: 78px;
}
#da-dream-section .da-fit-heading {
margin-bottom: 35px;
}
#da-dream-section .da-fit-heading h3 {
font-size: 35px;
}
#da-dream-section .da-fit-heading p {
font-size: 16px;
}
#da-dream-section .da-fit-grid {
gap: 16px;
}
#da-dream-section .da-fit-card {
padding: 29px 23px;
border-radius: 24px;
}
#da-dream-section .da-fit-card h4 {
font-size: 25px;
white-space: normal;
}
#da-dream-section .da-not-for h4 {
font-size: clamp(15px, 4.6vw, 18px);
line-height: 1.15;
letter-spacing: -0.025em;
white-space: nowrap;
}
#da-dream-section .da-fit-list li {
padding-left: 34px;
font-size: 15px;
}
}
@media (max-width: 380px) {
#da-dream-section {
padding-right: 12px;
padding-left: 12px;
}
#da-dream-section h2 {
font-size: 32px;
}
#da-dream-section .da-future,
#da-dream-section .da-card,
#da-dream-section .da-fit-card {
padding-right: 19px;
padding-left: 19px;
}
#da-dream-section .da-cta-panel {
padding-right: 14px;
padding-left: 14px;
}
#da-dream-section .da-button {
font-size: 12px;
}
}
@media (prefers-reduced-motion: reduce) {
#da-dream-section .da-card,
#da-dream-section .da-button,
#da-dream-section .da-button span {
transition: none;
}
}
</style>
<section id="da-dream-section" aria-labelledby="da-dream-title">
<div class="da-container">
<header class="da-heading">
<p class="da-eyebrow">The real transformation</p>
<h2 id="da-dream-title">
The goal isn’t to know every button.
It’s to make the video in your head <span>real.</span>
</h2>
<p class="da-intro">
CapCut Creator Mastery gives you a clear, repeatable process for
turning raw footage into polished content people want to watch.
No more guessing, endless tutorials or unfinished ideas.
</p>
</header>
<div class="da-card-grid">
<article class="da-card">
<div class="da-number" aria-hidden="true">01</div>
<h3>Create with confidence</h3>
<p>
Open CapCut knowing exactly where to begin and what to do next,
from importing your footage to the final export.
</p>
</article>
<article class="da-card">
<div class="da-number" aria-hidden="true">02</div>
<h3>Develop your own style</h3>
<p>
Turn ordinary footage into distinctive videos that look polished,
feel intentional and are recognisably yours.
</p>
</article>
<article class="da-card">
<div class="da-number" aria-hidden="true">03</div>
<h3>Create new opportunities</h3>
<p>
Build a practical skill you can use for your own channel,
for a client or for a brand.
</p>
</article>
</div>
<div class="da-future">
<div>
<p class="da-future-label">Imagine 30 days from now</p>
<h3>You know exactly how to create it.</h3>
<ul class="da-list">
<li>Your timeline feels organised instead of overwhelming.</li>
<li>
You know how to choose the right cuts, effects and transitions.
</li>
<li>
Your colour, sound and visual storytelling feel intentional.
</li>
<li>
You finish the videos you start and publish with confidence.
</li>
<li>
You feel ready when a creator, client or brand asks for your help.
</li>
</ul>
</div>
<aside class="da-cta-panel">
<h4>Your ideas deserve to be created.</h4>
<p>
Learn the process, build skills you trust and finally bring your
ideas to life with confidence.
</p>
<div class="da-course-facts" aria-label="Course information">
<div class="da-fact">
<strong>8</strong>
<span>Modules</span>
</div>
<div class="da-fact">
<strong>30+</strong>
<span>Lessons</span>
</div>
<div class="da-fact">
<strong>5+</strong>
<span>Hours</span>
</div>
</div>
<a
class="da-button"
href="https://join.dinaandagnes.com/capcut-creator-mastery"
>
Join the October 2026 Waitlist
<span aria-hidden="true">→</span>
</a>
<p class="da-small-print">
Be first to receive the launch date and enrolment details.
</p>
</aside>
</div>
<div class="da-fit-section">
<header class="da-fit-heading">
<p class="da-eyebrow">Is this course right for you?</p>
<h3>Built for creators who are ready to stop guessing.</h3>
<p>
You don’t need previous editing experience. You just need ideas
you want to bring to life and the willingness to practise.
</p>
</header>
<div class="da-fit-grid">
<article class="da-fit-card da-for">
<div class="da-fit-icon" aria-hidden="true">✓</div>
<h4>This course is for you if…</h4>
<ul class="da-fit-list">
<li>
You have ideas for videos but struggle to make them look
the way you imagined.
</li>
<li>
You feel overwhelmed when you open CapCut and don’t know
where to begin.
</li>
<li>
You watch tutorials but still don’t have a clear,
repeatable editing process.
</li>
<li>
You want to create better content for your own channel,
business, clients or brands.
</li>
<li>
You want practical lessons you can follow and use immediately.
</li>
</ul>
</article>
<article class="da-fit-card da-not-for">
<div class="da-fit-icon" aria-hidden="true">–</div>
<h4>This course may not be for you if…</h4>
<ul class="da-fit-list">
<li>
You already edit at an advanced professional level and need
specialist VFX or motion-design training.
</li>
<li>
You want to watch passively without practising or creating
your own edits.
</li>
<li>
You are looking for guaranteed views, virality or income
without putting the skills into action.
</li>
<li>
You want to memorise every CapCut feature instead of learning
a practical editing workflow.
</li>
<li>
You don’t plan to use CapCut to create videos.
</li>
</ul>
</article>
</div>
</div>
</div>
</section>
<style>
#da-dream-section .da-fit-card.da-not-for {
border: 1px solid rgba(255, 45, 85, 0.85);
background:
radial-gradient(
circle at 100% 0%,
rgba(255, 45, 85, 0.12),
transparent 42%
),
rgba(29, 29, 31, 0.94);
box-shadow:
0 0 14px rgba(255, 45, 85, 0.13),
0 24px 65px rgba(15, 20, 17, 0.16);
}
#da-dream-section .da-not-for .da-fit-icon {
background: #ff2d55;
box-shadow:
0 0 8px rgba(255, 45, 85, 0.38),
0 0 16px rgba(255, 45, 85, 0.16);
}
#da-dream-section .da-not-for .da-fit-list li::before {
color: #fff;
background: rgba(255, 45, 85, 0.95);
box-shadow: 0 0 7px rgba(255, 45, 85, 0.28);
}
</style>