-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
825 lines (726 loc) · 30.5 KB
/
index.html
File metadata and controls
825 lines (726 loc) · 30.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bracket - 미러리스 카메라 사용자를 위한 자동 설정 변경 및 AI 사진 정리 솔루션.">
<title>Bracket | 15초에서 3초로</title>
<!-- Font: Inter & Font Awesome -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* --- 1. CSS Variables & Reset --- */
:root {
--color-bg: #000000;
--color-bg-card: #1A1A1A;
/* 메인 컬러: #E6FF79 */
--color-primary: #E6FF79;
--color-primary-hover: #dbe660;
--color-text-main: #FFFFFF;
--color-text-sub: #A1A1A1;
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--transition: all 0.3s ease;
--container-width: 1200px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--color-bg);
color: var(--color-text-main);
font-family: var(--font-main);
line-height: 1.6;
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
/* --- 2. Utility Classes --- */
.container {
width: 90%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}
.text-primary { color: var(--color-primary); }
/* [버튼 스타일 통일] - team.html과 동일하게 설정 */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px; /* 사이즈 축소 */
font-size: 0.85rem; /* 폰트 축소 */
font-weight: 700;
border-radius: 10px; /* 라운드 조정 */
cursor: pointer;
transition: var(--transition);
gap: 6px;
white-space: nowrap;
}
.btn-primary {
background-color: var(--color-primary);
color: #000;
border: 2px solid var(--color-primary);
}
.btn-primary:hover {
background-color: var(--color-primary-hover);
border-color: var(--color-primary-hover);
transform: translateY(-2px);
}
.section-padding {
padding: 120px 0;
}
/* Gradient Backgrounds */
.bg-hero {
background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 80%);
position: relative;
z-index: 1;
}
.bg-gradient-down {
background: linear-gradient(180deg, #000000 0%, #111111 100%);
margin-top: -1px;
position: relative;
z-index: 0;
}
.bg-gradient-up {
background: linear-gradient(180deg, #111111 0%, #000000 100%);
}
.bg-gradient-seamless {
background: linear-gradient(180deg, #000000 0%, #111111 50%, #000000 100%);
}
.bg-gradient-cta {
background: radial-gradient(circle at 50% 50%, #1A1A1A 0%, #000000 100%);
}
@media (max-width: 768px) {
.section-padding { padding: 80px 0; }
}
/* --- 3. Animation Classes --- */
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}
/* --- 4. Header & Nav (Updated for consistency) --- */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px);
padding: 16px 0; /* 패딩 통일 */
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
/* 로고 스타일 통일 */
.logo {
font-size: 1.4rem; /* 폰트 크기 통일 */
font-weight: 800;
color: var(--color-text-main);
display: flex;
align-items: center;
gap: 10px;
}
.logo img {
width: 32px; /* 이미지 크기 통일 */
height: 32px;
object-fit: contain;
}
/* 우측 네비게이션 액션 그룹 */
.nav-actions {
display: flex;
align-items: center;
gap: 20px;
}
/* TEAM 링크 스타일 통일 */
.nav-link-team {
font-weight: 700;
font-size: 1rem;
color: var(--color-text-main);
transition: color 0.3s;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.nav-link-team:hover { color: var(--color-primary); }
@media (max-width: 480px) {
.nav-actions { gap: 15px; }
.btn { padding: 8px 16px; font-size: 0.85rem; } /* 모바일 버튼 크기 통일 */
.logo span { display: none; }
}
/* --- 5. Hero Section --- */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
padding-top: 80px;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
align-items: center;
}
.hero-text h1 {
font-size: 4rem;
line-height: 1.15;
margin-bottom: 24px;
font-weight: 800;
letter-spacing: -1px;
}
.hero-text p {
font-size: 1.2rem;
color: var(--color-text-sub);
margin-bottom: 40px;
max-width: 540px;
line-height: 1.6;
}
.hero-btns {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
/* Optimized Mockup Size */
.mockup-container-hero {
position: relative;
width: 100%;
/* max-width: 3000px; */
margin: 0 auto;
}
.mockup-container-hero img {
width: 100%;
height: auto;
display: block;
filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
transform: scale(2); /* 1.5배 확대, 원하는 만큼 조정 */
transform-origin: center; /* 중앙 기준 확대 */
}
.nav-link-history {
font-weight: 700;
font-size: 1rem;
color: var(--color-text-main); /* 현재 페이지 표시를 위해 색상 유지 */
text-transform: uppercase;
letter-spacing: 0.5px;
transition: color 0.3s;
}
/* Tri-shot Section Mockup Size */
.mockup-container-trishot {
position: relative;
width: 100%;
max-width: 300px;
margin: 0 auto;
}
.mockup-container-trishot img {
width: 100%;
height: auto;
display: block;
filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
/* AI Grouping Section Mockup Size */
.mockup-container-ai {
position: relative;
width: 100%;
max-width: 450px;
margin: 0 auto;
}
.mockup-container-ai img {
width: 100%;
height: auto;
display: block;
filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
@media (max-width: 1024px) {
.hero-text h1 { font-size: 3rem; }
.mockup-container-hero { max-width: 450px; }
.mockup-container-ai { max-width: 380px; }
}
@media (max-width: 768px) {
.hero { min-height: auto; padding-bottom: 60px; }
.hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
.hero-text h1 { font-size: 2.4rem; margin-bottom: 16px; }
.hero-text p { margin: 0 auto 30px; font-size: 1.05rem; }
.hero-btns { justify-content: center; }
/* Mobile Size */
.mockup-container-hero { margin-top: 20px; max-width: 240px; }
.mockup-container-trishot { margin-top: 20px; max-width: 240px; }
.mockup-container-ai { margin-top: 20px; max-width: 288px; }
}
/* --- 6. Problem & Solution Section --- */
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2 {
font-size: 2.8rem;
font-weight: 800;
margin-bottom: 16px;
}
/* PS Grid */
.ps-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
align-items: stretch; /* Stretch to match heights */
}
.ps-group {
display: flex;
flex-direction: column;
gap: 0;
height: 100%; /* Ensure group takes full height if needed */
}
.problem-card {
background: #161616;
padding: 40px 30px;
border-radius: 24px;
border: 1px solid #333;
position: relative;
z-index: 1;
height: 100%; /* Fill height */
display: flex;
flex-direction: column;
}
.problem-card h3 { font-size: 1.3rem; color: #ccc; margin-bottom: 10px; font-weight: 700; }
.problem-card p { color: #888; font-size: 0.95rem; flex-grow: 1; } /* Push content to fill */
.problem-card .icon { color: #666; font-size: 1.8rem; margin-bottom: 20px; }
.ps-connector {
height: 50px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
flex-shrink: 0; /* Prevent connector from shrinking */
}
.ps-connector::before {
content: '';
position: absolute;
height: 100%;
width: 2px;
background: linear-gradient(to bottom, #333, var(--color-primary));
z-index: 0;
}
.ps-connector i {
background: #000;
color: var(--color-primary);
padding: 8px;
border-radius: 50%;
border: 1px solid #333;
position: relative;
z-index: 1;
font-size: 0.8rem;
}
.solution-card {
background: rgba(230, 255, 121, 0.03);
padding: 40px 30px;
border-radius: 24px;
border: 1px solid var(--color-primary);
box-shadow: 0 0 40px rgba(230, 255, 121, 0.05);
position: relative;
z-index: 1;
height: 100%; /* Fill height */
display: flex;
flex-direction: column;
}
.solution-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.solution-card p { color: var(--color-text-sub); font-size: 0.95rem; flex-grow: 1; }
.solution-card .icon {
font-size: 2rem;
color: var(--color-primary);
margin-bottom: 20px;
}
@media (max-width: 768px) {
.ps-grid { grid-template-columns: 1fr; gap: 60px; }
.section-title h2 { font-size: 2rem; }
}
/* --- 7. Feature Sections (Tri-shot & AI) --- */
.feature-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.feature-text h2 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 30px;
line-height: 1.2;
}
.feature-list li {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
font-size: 1.05rem;
color: var(--color-text-sub);
}
.feature-list i {
color: var(--color-primary);
margin-right: 16px;
margin-top: 5px;
}
@media (max-width: 768px) {
.feature-content { grid-template-columns: 1fr; display: flex; flex-direction: column-reverse; gap: 40px; }
.feature-content.reverse { flex-direction: column-reverse; }
.feature-text h2 { font-size: 2.2rem; }
}
/* --- 8. How It Works --- */
.workflow-section { margin-bottom: 100px; }
.workflow-header {
margin-bottom: 40px;
border-left: 4px solid var(--color-primary);
padding-left: 20px;
}
.workflow-header h3 { font-size: 1.8rem; color: #fff; margin-bottom: 8px; }
.workflow-header p { color: var(--color-text-sub); font-size: 1rem; }
.workflow-bridge {
text-align: center;
margin: 80px 0;
padding: 60px 20px;
background: radial-gradient(circle, rgba(230, 255, 121, 0.03) 0%, rgba(0,0,0,0) 70%);
border-radius: 24px;
border-top: 1px solid rgba(230, 255, 121, 0.2);
}
.workflow-bridge h4 { font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.workflow-bridge p { color: var(--color-text-sub); font-size: 1.1rem; }
.steps-grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.step-item { text-align: center; position: relative; }
.step-number {
width: 36px;
height: 36px;
background: var(--color-primary);
color: #000;
font-weight: 800;
font-size: 0.9rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
position: relative;
z-index: 2;
}
/* Step Image Container */
.step-img-container {
width: 100%;
margin-bottom: 24px;
max-width: 240px;
aspect-ratio: 1206/2622;
margin-left: auto;
margin-right: auto;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.step-img-container img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}
.step-img-container div {
width: 100%;
height: 100%;
}
.step-item h4 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.step-item p { color: var(--color-text-sub); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 768px) {
.steps-grid-3 { grid-template-columns: 1fr; gap: 60px; }
.workflow-bridge h4 { font-size: 1.4rem; }
.workflow-section { margin-bottom: 60px; }
}
/* --- 11. CTA Section --- */
.cta-section {
text-align: center;
padding: 120px 20px;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: 2.8rem; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: var(--color-text-sub); margin-bottom: 40px; }
@media (max-width: 768px) {
.cta-content h2 { font-size: 2rem; }
}
/* --- 12. Footer --- */
footer {
padding: 60px 0;
border-top: 1px solid #222;
font-size: 0.9rem;
color: #666;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.footer-links {
display: flex;
gap: 24px;
}
.footer-links a:hover { color: var(--color-primary); }
.team-info {
font-size: 0.8rem;
margin-top: 16px;
color: #444;
}
@media (max-width: 768px) {
.footer-content { flex-direction: column; gap: 24px; text-align: center; }
}
</style>
</head>
<body>
<!-- Navigation -->
<header>
<div class="container nav-container">
<div class="logo">
<!-- [이미지 위치] 상단 로고 아이콘 -->
<img src="assets/BracketLogo.png" alt="Bracket App Icon">
<span>Bracket</span>
</div>
<!-- Unified Right Actions: Team Link + Download Button -->
<div class="nav-actions">
<a href="https://slime-shirt-140.notion.site/Bracket-2b002aff8b52809d81b7c6abf119eca3" class="nav-link-team">History</a>
<a href="team.html" class="nav-link-team">TEAM</a>
<a href="https://apps.apple.com/kr/app/bracket-%EB%AF%B8%EB%9F%AC%EB%A6%AC%EC%8A%A4-%EC%B9%B4%EB%A9%94%EB%9D%BC-%EC%B4%AC%EC%98%81-%EB%B3%B4%EC%A1%B0-%EC%95%B1/id6755022196" class="btn btn-primary" target="_blank">다운로드</a>
</div>
</div>
</header>
<!-- Hero Section (Gradient BG) -->
<section class="hero bg-hero">
<div class="container hero-content">
<div class="hero-text fade-up">
<h1>15초 걸리던<br>설정 변경,<br>이제 <span class="text-primary">3초</span></h1>
<p>설정 변경에 지친 당신을 위한,<br>가장 빠른 캐논 카메라 제어 앱</p>
<div class="hero-btns">
<a href="https://apps.apple.com/kr/app/bracket-%EB%AF%B8%EB%9F%AC%EB%A6%AC%EC%8A%A4-%EC%B9%B4%EB%A9%94%EB%9D%BC-%EC%B4%AC%EC%98%81-%EB%B3%B4%EC%A1%B0-%EC%95%B1/id6755022196" class="btn btn-primary" target="_blank"><i class="fa-brands fa-apple"></i> App Store에서 다운로드</a>
</div>
</div>
<div class="hero-visual fade-up" style="transition-delay: 0.2s;">
<div class="mockup-container-hero">
<!-- [이미지 위치] 메인 히어로 이미지 -->
<img src="assets/mainmockup1.png" alt="Bracket App Interface">
</div>
</div>
</div>
</section>
<!-- Problem & Solution Section (Gradient BG: Black to Dark) -->
<section class="section-padding bg-gradient-down">
<div class="container">
<div class="section-title fade-up">
<h2>당신이 순간을 놓치는 이유<br><span style="font-size: 0.6em; color: #666; font-weight: 400; display:block; margin-top:10px;">그리고 Bracket이 제시하는 명쾌한 해답</span></h2>
</div>
<div class="ps-grid">
<!-- Group 1 -->
<div class="ps-group fade-up">
<div class="problem-card">
<div class="icon"><i class="fa-solid fa-shuffle"></i></div>
<h3>설정 조작의 어려움과 귀찮음</h3>
<p>촬영 중 설정값을 변경하는 과정은 촬영의 흐름을 끊고 시간을 낭비시킵니다.</p>
</div>
<div class="ps-connector"><i class="fa-solid fa-arrow-down"></i></div>
<div class="solution-card">
<div class="icon"><i class="fa-solid fa-camera-rotate"></i></div>
<h3>Tri-shot</h3>
<p>촬영 목적에 맞는 설정을 미리 저장하고 즉시 전환하세요. Canon Camera Control API를 통해 셔터만 눌러도 설정이 변경됩니다.</p>
</div>
</div>
<!-- Group 2 -->
<div class="ps-group fade-up" style="transition-delay: 0.2s;">
<div class="problem-card">
<div class="icon"><i class="fa-solid fa-layer-group"></i></div>
<h3>데이터 관리의 부담</h3>
<p>수백 장의 사진을 수동으로 분류하는 것 - 상상만 해도 지치는 일입니다.</p>
</div>
<div class="ps-connector"><i class="fa-solid fa-arrow-down"></i></div>
<div class="solution-card">
<div class="icon"><i class="fa-solid fa-robot"></i></div>
<h3>AI 사진 그룹화</h3>
<p>Bracket은 AI와 메타데이터 분석으로 촬영된 사진을 자동으로 분류하여 정리해줍니다. 베스트 컷만 선택해 갤러리에 저장하세요.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Section 1: Tri-shot (Gradient BG: Dark to Black) -->
<section class="section-padding bg-gradient-up" style="padding-bottom: 80px;">
<div class="container feature-content">
<div class="feature-mockup fade-up">
<!-- [수정됨] Tri-shot 섹션용 목업 컨테이너 (기존 사이즈 유지) -->
<div class="mockup-container-trishot">
<!-- [이미지 위치] Tri-shot 설명 이미지 -->
<img src="assets/trishotimage.png" alt="Tri-shot Interface">
</div>
</div>
<div class="feature-text fade-up">
<h2 class="text-primary">Tri-shot:<br>셔터마다 바뀌는<br>세 가지 시선</h2>
<ul class="feature-list">
<li><i class="fa-solid fa-check"></i> 쉽게 생성 가능한 프리셋</li>
<li><i class="fa-solid fa-check"></i> 셔터를 누를 때마다 프리셋 자동 변경</li>
<li><i class="fa-solid fa-check"></i> 카메라 조작 없이 셔터만으로 다양한 연출 가능</li>
</ul>
</div>
</div>
</section>
<!-- Feature Section 2: AI Grouping (New) -->
<section class="section-padding bg-gradient-down" style="padding-top: 0; padding-bottom: 80px;">
<div class="container feature-content">
<div class="feature-text fade-up" style="order: 0;">
<h2 class="text-primary">AI 사진 그룹화:<br>촬영은 마음껏,<br>정리는 가볍게</h2>
<ul class="feature-list">
<li><i class="fa-solid fa-check"></i> Tri-shot 때문에 사진량이 늘어나지 않을지 걱정 마세요.</li>
<li><i class="fa-solid fa-check"></i> 유사한 장면을 Bracket이 자동으로 묶어 정리합니다.</li>
<li><i class="fa-solid fa-check"></i> 그룹별로 베스트 컷만 빠르게 선별하세요.</li>
</ul>
</div>
<div class="feature-mockup fade-up" style="order: 1;">
<!-- [수정됨] AI Grouping 섹션용 목업 컨테이너 (크게) -->
<div class="mockup-container-ai">
<!-- [이미지 위치] AI Grouping -->
<img src="assets/aigroupimage.png" alt="AI Grouping Interface">
</div>
</div>
</div>
</section>
<!-- How It Works (Gradient BG: Seamless Black-Dark-Black) -->
<section class="section-padding how-it-works bg-gradient-seamless">
<div class="container">
<div class="section-title fade-up">
<h2>How It Works</h2>
<p>촬영부터 정리까지, 끊김 없는 워크플로우</p>
</div>
<!-- Part 1: Tri-shot Workflow -->
<div class="workflow-section fade-up">
<div class="workflow-header">
<h3>Part 1. 촬영</h3>
<p>셔터만 누르세요. 설정은 Bracket이 담당합니다.</p>
</div>
<div class="steps-grid-3">
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 1 이미지 -->
<img src="assets/Settingmockup1.png" alt="Preset List">
</div>
<div class="step-number">1</div>
<h4>프리셋 설정</h4>
<p>카메라 다이얼에서 영감을 받은 UI로<br>프리셋을 미리 저장해두세요.</p>
</div>
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 2 이미지 -->
<img src="assets/trishot1.png" alt="Shooting">
</div>
<div class="step-number">2</div>
<h4>Tri-shot 대기</h4>
<p>촬영 전 원하는 프리셋을 지정해두면<br>모든 준비는 끝납니다.</p>
</div>
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 3 이미지 -->
<img src="assets/trishot2.png" alt="Auto Loop">
</div>
<div class="step-number">3</div>
<h4>자동 순환 촬영</h4>
<p>셔터를 누를 때마다 지정해둔 세가지 설정이<br>자동으로 바뀌며 연속 촬영됩니다.</p>
</div>
</div>
</div>
<!-- Bridge: Problem Statement -->
<div class="workflow-bridge fade-up">
<h4>"Tri-shot으로 확보한 수많은 사진,<br>SD카드를 뽑기도 전에 걱정되시나요?"</h4>
<p>걱정 마세요. 늘어난 결과물은 Bracket이 정리해 드립니다.</p>
</div>
<!-- Part 2: AI Grouping Workflow -->
<div class="workflow-section fade-up">
<div class="workflow-header">
<h3>Part 2. 정리</h3>
<p>수백 장의 사진 속에서 베스트 컷을 찾는 가장 빠른 방법</p>
</div>
<div class="steps-grid-3">
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 4 이미지 -->
<img src="assets/aigroup1.png" alt="Photo Pile">
</div>
<div class="step-number">4</div>
<h4>무선으로 간편하게</h4>
<p>날짜 별로 구분된 사진들을<br>간편하게 선택만 하세요.</p>
</div>
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 5 이미지 -->
<img src="assets/aigroup2.png" alt="AI Grouping">
</div>
<div class="step-number">5</div>
<h4>AI 자동 그룹핑</h4>
<p>Bracket이 AI로<br>유사한 장면을 자동으로 묶어줍니다.</p>
</div>
<div class="step-item">
<div class="step-img-container">
<!-- [이미지 위치] Step 6 이미지 -->
<img src="assets/aigroup3.png" alt="Selection">
</div>
<div class="step-number">6</div>
<h4>베스트 컷 선택</h4>
<p>정리된 그룹에서 잘 나온 사진만<br>빠르게 골라 저장하세요.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section (Gradient BG: Radial for seamless end) -->
<section id="cta" class="cta-section bg-gradient-cta fade-up">
<div class="cta-content">
<h2>값 설정도, 사진 정리도 한번에</h2>
<p>지금 Bracket을 다운로드하고, 모든 순간을 담으세요.</p>
<div class="hero-btns" style="justify-content: center;">
<a href="https://apps.apple.com/kr/app/bracket-%EB%AF%B8%EB%9F%AC%EB%A6%AC%EC%8A%A4-%EC%B9%B4%EB%A9%94%EB%9D%BC-%EC%B4%AC%EC%98%81-%EB%B3%B4%EC%A1%B0-%EC%95%B1/id6755022196" class="btn btn-primary" target="_blank"><i class="fa-brands fa-apple"></i> App Store에서 다운로드</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="logo" style="color: #666; gap: 8px;">
<!-- [이미지 위치] 푸터 로고 아이콘 -->
<img src="assets/BracketLogo.png" style="width:24px; height:24px; object-fit: contain;" alt="icon"> Bracket
</div>
<div class="footer-links">
<a href="https://github.com/DeveloperAcademy-POSTECH/2025-C6-A6-Bracket">GitHub</a>
<a href="https://slime-shirt-140.notion.site/Bracket-2b002aff8b52809d81b7c6abf119eca3">Notion</a>
</div>
</div>
<div style="border-top: 1px solid #333; padding-top: 20px; display: flex; flex-direction: column; gap: 10px;">
<p style="font-size: 0.75rem; color: #444;">Contact: honesthouse2025@gmail.com</p>
</div>
</div>
</footer>
<script>
const observerOptions = { root: null, rootMargin: '0px', threshold: 0.1 };
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);
document.querySelectorAll('.fade-up').forEach((element) => observer.observe(element));
</script>
</body>
</html>