Skip to content

Commit c2dfa2f

Browse files
committed
ui: rebalance hero to 45:55 ratio per Oracle recommendation
Oracle diagnosis: visual weight imbalance, not just geometric ratio. 3D terminal with shadows = 3-4x visual weight of plain text. Changes: - Grid ratio: 1:1.5 → 1:1.2 (45:55 split) - Gap: 50px → 64px (more breathing room) - Left padding-right: 20px (internal space) - Terminal: 700px → 660px (reduce visual dominance) - 3D transform: rotateY(-3deg) → rotateY(-2deg) (20% less intensity) Result: Balanced visual hierarchy without sacrificing terminal prominence. Math verified at 1440px: left 495px, right 593px (45:55 ratio). Terminal 594px actual width, 660px max-width, 64px gap. Evidence: .sisyphus/evidence/task-balanced-45-55.png
1 parent cad2625 commit c2dfa2f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/routes/+page.svelte

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@
308308
.hero {
309309
padding: 80px 0 60px;
310310
display: grid;
311-
grid-template-columns: 1fr 1.5fr;
312-
gap: 50px;
311+
grid-template-columns: 1fr 1.2fr;
312+
gap: 64px;
313313
align-items: center;
314314
position: relative;
315315
}
@@ -318,6 +318,7 @@
318318
display: flex;
319319
flex-direction: column;
320320
gap: 32px;
321+
padding-right: 20px;
321322
}
322323
323324
.hero-title {
@@ -553,7 +554,7 @@
553554
554555
.terminal-window {
555556
width: 100%;
556-
max-width: 700px;
557+
max-width: 660px;
557558
border-radius: 16px;
558559
overflow: hidden;
559560
background: #1e1e2e;
@@ -562,7 +563,7 @@
562563
0 20px 40px -12px rgba(0, 0, 0, 0.8),
563564
0 0 80px -20px rgba(34, 197, 94, 0.25),
564565
0 40px 100px rgba(0, 0, 0, 0.5);
565-
transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
566+
transform: perspective(1200px) rotateY(-2deg) rotateX(0.5deg);
566567
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
567568
}
568569

0 commit comments

Comments
 (0)