irona-cli 0.3.0

A terminal UI tool for reclaiming disk space from build artifacts
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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>irona — Reclaim your disk. Clean your workspace.</title>
  <meta name="description" content="irona is a Rust TUI CLI tool that scans your workspace for build artifacts — Rust, Node.js, C#, Python, Go, PHP, Ruby, Swift, Gradle, Maven, Elm, Dart, Haskell, and .NET Paket/NuGet — and lets you delete them interactively." />
  <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=JetBrains+Mono:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap" rel="stylesheet" />

  <style>
    /* ─── Design tokens ────────────────────────────────────────────────── */
    :root {
      --bg:            #080808;
      --surface:       #0f0f0f;
      --surface-hover: #141414;
      --border:        #252525;
      --phosphor:      #39ff14;
      --phosphor-dim:  #2ed410;
      --phosphor-ghost: rgba(57, 255, 20, 0.06);
      --amber:         #ffd080;
      --text:          #d8d8d8;
      --text-dim:      #909090;
      --white:         #f4f4f4;
      --font:          'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
      --space:         8px;
      --glow-sm:       0 0 16px rgba(57, 255, 20, 0.25);
      --glow-md:       0 0 40px rgba(57, 255, 20, 0.35), 0 0 80px rgba(57, 255, 20, 0.12);
    }

    /* ─── Reset ────────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-size: 14px;
      line-height: 1.65;
      min-height: 100vh;
      /* CRT scanline overlay */
      background-image:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 3px,
          rgba(255,255,255,0.012) 3px,
          rgba(255,255,255,0.012) 4px
        );
    }

    /* ─── Scrollbar ─────────────────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border); }
    ::-webkit-scrollbar-thumb:hover { background: var(--phosphor-dim); }

    /* ─── Layout ────────────────────────────────────────────────────────── */
    .container {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 calc(var(--space) * 3);
    }

    section {
      padding: calc(var(--space) * 12) 0;
      border-bottom: 1px solid var(--border);
    }

    section:last-of-type { border-bottom: none; }

    /* ─── Section label — // prefixed terminal comment style ───────────── */
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: calc(var(--space) * 6);
      display: flex;
      align-items: center;
      gap: calc(var(--space) * 2);
    }

    .section-label::before {
      content: '//';
      color: var(--phosphor);
      font-weight: 700;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ─── Top bar ───────────────────────────────────────────────────────── */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--border);
      background: rgba(8, 8, 8, 0.92);
      backdrop-filter: blur(8px);
      padding: calc(var(--space) * 2.5) 0;
    }

    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .topbar-logo {
      font-size: 14px;
      font-weight: 700;
      color: var(--phosphor);
      letter-spacing: 0.12em;
      text-decoration: none;
      text-shadow: var(--glow-sm);
    }

    .topbar-logo::before {
      content: '> ';
      opacity: 0.6;
    }

    .topbar-nav {
      display: flex;
      gap: calc(var(--space) * 5);
      list-style: none;
    }

    .topbar-nav a {
      font-size: 12px;
      font-weight: 400;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding-bottom: 3px;
      border-bottom: 1px solid transparent;
      transition: color 150ms, border-color 150ms;
    }

    .topbar-nav a:hover {
      color: var(--phosphor);
      border-bottom-color: var(--phosphor);
    }

    /* ─── Hero ──────────────────────────────────────────────────────────── */
    #hero {
      padding: calc(var(--space) * 18) 0 calc(var(--space) * 14);
    }

    .hero-eyebrow {
      font-size: 11px;
      font-style: italic;
      color: var(--text-dim);
      letter-spacing: 0.15em;
      margin-bottom: calc(var(--space) * 4);
      opacity: 0;
      animation: fade-up 500ms 80ms forwards;
    }

    .hero-title {
      font-size: clamp(64px, 12vw, 112px);
      font-weight: 700;
      color: var(--phosphor);
      line-height: 0.9;
      letter-spacing: -0.03em;
      margin-bottom: calc(var(--space) * 5);
      text-shadow: var(--glow-md);
      opacity: 0;
      animation: fade-up 500ms 160ms forwards;
    }

    .hero-tagline {
      font-size: 20px;
      font-weight: 300;
      color: var(--white);
      max-width: 440px;
      line-height: 1.5;
      margin-bottom: calc(var(--space) * 5);
      opacity: 0;
      animation: fade-up 500ms 240ms forwards;
    }

    /* Animated scan-progress — the memorable anchor */
    .hero-scan {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: calc(var(--space) * 8);
      height: 20px;
      opacity: 0;
      animation: fade-up 500ms 320ms forwards;
    }

    .scan-text { color: var(--phosphor-dim); }
    .scan-count { color: var(--amber); font-weight: 700; }

    /* ─── Install block ─────────────────────────────────────────────────── */
    .install-block {
      opacity: 0;
      animation: fade-up 500ms 400ms forwards;
      margin-bottom: calc(var(--space) * 5);
      display: flex;
      align-items: center;
      gap: calc(var(--space) * 3);
      flex-wrap: wrap;
    }

    .prompt-line {
      display: inline-flex;
      align-items: center;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      padding: calc(var(--space) * 2.5) calc(var(--space) * 3.5);
      cursor: pointer;
      position: relative;
      transition: border-color 150ms, box-shadow 150ms;
      border-left: 3px solid var(--phosphor);
    }

    .prompt-line:hover {
      border-color: var(--phosphor-dim);
      box-shadow: var(--glow-sm);
    }

    .prompt-line:hover .copy-hint { opacity: 1; }

    .prompt-dollar {
      color: var(--phosphor);
      margin-right: calc(var(--space) * 2);
      user-select: none;
      font-weight: 700;
    }

    .prompt-cmd {
      color: var(--amber);
      font-size: 14px;
      letter-spacing: 0.02em;
    }

    .prompt-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--phosphor);
      margin-left: 5px;
      vertical-align: middle;
      animation: blink 1.1s step-end infinite;
    }

    .copy-hint {
      font-size: 10px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-left: calc(var(--space) * 3);
      opacity: 0;
      transition: opacity 150ms;
      user-select: none;
    }

    .copy-feedback {
      font-size: 11px;
      color: var(--phosphor);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 200ms;
    }

    .copy-feedback.show { opacity: 1; }

    .hero-links {
      display: flex;
      align-items: center;
      gap: calc(var(--space) * 4);
      flex-wrap: wrap;
      opacity: 0;
      animation: fade-up 500ms 480ms forwards;
    }

    .btn-release {
      display: inline-flex;
      align-items: center;
      gap: calc(var(--space) * 1.5);
      font-family: var(--font);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      border: 1px solid var(--border);
      padding: calc(var(--space) * 2) calc(var(--space) * 3);
      transition: border-color 150ms, color 150ms, box-shadow 150ms;
    }

    .btn-release:hover {
      border-color: var(--text-dim);
      color: var(--white);
    }

    .btn-release svg {
      width: 14px; height: 14px;
      stroke: currentColor;
      fill: none;
    }

    .hero-hint {
      font-size: 11px;
      color: var(--text-dim);
    }

    /* ─── Steps / How it works ──────────────────────────────────────────── */
    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .step {
      background: var(--surface);
      padding: calc(var(--space) * 5) calc(var(--space) * 5);
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: calc(var(--space) * 4);
      align-items: start;
      transition: background 150ms;
    }

    .step:hover { background: var(--surface-hover); }

    .step-number {
      font-size: 12px;
      font-weight: 700;
      color: var(--phosphor);
      letter-spacing: 0.05em;
      padding-top: 3px;
      font-style: italic;
    }

    .step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: calc(var(--space) * 2);
    }

    .step-desc {
      font-size: 13px;
      color: var(--text);
      line-height: 1.75;
    }

    .step-code {
      display: inline-block;
      background: var(--bg);
      color: var(--amber);
      padding: 1px 7px;
      font-size: 13px;
      border: 1px solid var(--border);
      font-family: var(--font);
    }

    .step-key {
      display: inline-block;
      background: #1a1a1a;
      color: var(--white);
      padding: 0 9px;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid #383838;
      border-bottom: 2px solid #444;
      font-family: var(--font);
      line-height: 1.8;
    }

    /* ─── TUI preview ───────────────────────────────────────────────────── */
    .tui-preview {
      margin-top: calc(var(--space) * 3);
      background: #040404;
      border: 1px solid var(--border);
      border-left: 3px solid var(--phosphor-dim);
      padding: calc(var(--space) * 3) calc(var(--space) * 3);
      font-size: 12px;
      line-height: 2;
      overflow-x: auto;
    }

    .tui-line { white-space: pre; }
    .tui-checked { color: var(--phosphor); }
    .tui-unchecked { color: #444; }
    .tui-size { color: var(--amber); }
    .tui-path { color: var(--text); }
    .tui-selected {
      background: rgba(57, 255, 20, 0.08);
      color: var(--white);
      display: block;
    }
    .tui-hint {
      color: var(--text-dim);
      font-size: 11px;
      margin-top: calc(var(--space) * 1.5);
      border-top: 1px solid var(--border);
      padding-top: calc(var(--space) * 1.5);
    }

    /* ─── Language cards ────────────────────────────────────────────────── */
    .langs {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .lang-card {
      background: var(--surface);
      padding: calc(var(--space) * 4) calc(var(--space) * 4);
      transition: background 150ms;
      border-left: 2px solid transparent;
    }

    .lang-card:hover {
      background: var(--surface-hover);
      border-left-color: var(--phosphor);
    }

    .lang-icon {
      width: 28px;
      height: 28px;
      margin-bottom: calc(var(--space) * 2.5);
      opacity: 0.85;
      transition: opacity 150ms;
    }

    .lang-card:hover .lang-icon { opacity: 1; }

    .lang-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: calc(var(--space) * 1.5);
    }

    .lang-dirs {
      display: flex;
      flex-wrap: wrap;
      gap: calc(var(--space) * 0.75);
    }

    .dir-badge {
      font-size: 11px;
      color: var(--amber);
      background: rgba(255, 208, 128, 0.06);
      border: 1px solid rgba(255, 208, 128, 0.2);
      padding: 1px calc(var(--space) * 1.5);
      letter-spacing: 0.02em;
    }

    /* ─── Footer ────────────────────────────────────────────────────────── */
    footer {
      padding: calc(var(--space) * 7) 0;
      border-top: 1px solid var(--border);
    }

    footer .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: calc(var(--space) * 3);
    }

    .footer-brand {
      font-size: 12px;
      color: var(--text-dim);
      letter-spacing: 0.05em;
    }

    .footer-brand strong {
      color: var(--phosphor);
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      gap: calc(var(--space) * 4);
      align-items: center;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: calc(var(--space) * 1.5);
      font-size: 12px;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 150ms;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-links svg {
      width: 15px; height: 15px;
      fill: currentColor;
    }

    /* ─── Animations ────────────────────────────────────────────────────── */
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes scan-progress {
      0%   { width: 0%; }
      60%  { width: 100%; }
      100% { width: 100%; }
    }

    @keyframes count-up {
      0%   { opacity: 0; }
      55%  { opacity: 0; }
      70%  { opacity: 1; }
      100% { opacity: 1; }
    }

    .scan-bar-wrap {
      display: inline-flex;
      align-items: center;
      gap: calc(var(--space) * 2);
      font-size: 11px;
    }

    .scan-bar-track {
      width: 120px;
      height: 3px;
      background: var(--border);
      overflow: hidden;
    }

    .scan-bar-fill {
      height: 100%;
      background: var(--phosphor);
      width: 0%;
      animation: scan-progress 2.4s 900ms cubic-bezier(.4,0,.2,1) forwards;
      box-shadow: 0 0 6px var(--phosphor);
    }

    .scan-count {
      color: var(--amber);
      font-weight: 700;
      animation: count-up 2.4s 900ms forwards;
    }

    /* ─── Responsive ────────────────────────────────────────────────────── */
    @media (max-width: 600px) {
      .topbar-nav { display: none; }
      .step { grid-template-columns: 36px 1fr; gap: calc(var(--space) * 2); }
      .langs { grid-template-columns: 1fr 1fr; }
      .hero-title { letter-spacing: -0.04em; }
    }

    @media (max-width: 400px) {
      .langs { grid-template-columns: 1fr; }
    }
  </style>
</head>
<body>

  <!-- ── Top bar ─────────────────────────────────────────────────────── -->
  <header class="topbar" role="banner">
    <div class="container">
      <a href="#" class="topbar-logo">irona</a>
      <nav aria-label="Site navigation">
        <ul class="topbar-nav">
          <li><a href="#how-it-works">How it works</a></li>
          <li><a href="#languages">Languages</a></li>
          <li><a href="#download">Download</a></li>
          <li><a href="https://github.com/kunjee17/irona" target="_blank" rel="noopener">GitHub</a></li>
        </ul>
      </nav>
    </div>
  </header>

  <main>

    <!-- ── Hero ──────────────────────────────────────────────────────── -->
    <section id="hero" aria-labelledby="hero-heading">
      <div class="container">

        <p class="hero-eyebrow">Rust TUI · build artifact cleaner · named after Richie Rich's robot maid</p>

        <h1 class="hero-title" id="hero-heading">irona</h1>

        <p class="hero-tagline">
          Reclaim your disk.<br>Clean your workspace.
        </p>

        <!-- Animated scan bar — the memorable design anchor -->
        <div class="hero-scan" aria-hidden="true">
          <span class="scan-bar-wrap">
            <span class="scan-text">scanning ~/projects</span>
            <span class="scan-bar-track">
              <span class="scan-bar-fill"></span>
            </span>
            <span class="scan-count">14 artifacts found</span>
          </span>
        </div>

        <div class="install-block">
          <button
            class="prompt-line"
            onclick="copyInstall(this)"
            aria-label="Copy install command: cargo install irona-cli"
            title="Click to copy"
          >
            <span class="prompt-dollar" aria-hidden="true">$</span>
            <span class="prompt-cmd">cargo install irona-cli</span>
            <span class="prompt-cursor" aria-hidden="true"></span>
            <span class="copy-hint" aria-hidden="true">click to copy</span>
          </button>
          <span class="copy-feedback" id="copy-fb" aria-live="polite">copied!</span>
        </div>

        <div class="hero-links">
          <a
            href="https://github.com/kunjee17/irona/releases"
            class="btn-release"
            target="_blank"
            rel="noopener"
            aria-label="Download pre-built binaries from GitHub Releases"
          >
            <svg viewBox="0 0 24 24" aria-hidden="true">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
                d="M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3"/>
            </svg>
            Pre-built binaries
          </a>
          <span class="hero-hint">or build from source — Cargo 1.70+</span>
        </div>

      </div>
    </section>

    <!-- ── How it works ───────────────────────────────────────────────── -->
    <section id="how-it-works" aria-labelledby="how-heading">
      <div class="container">
        <p class="section-label" id="how-heading">How it works</p>

        <div class="steps" role="list">

          <article class="step" role="listitem">
            <div class="step-number" aria-hidden="true">01</div>
            <div class="step-body">
              <h3 class="step-title">Point it at your workspace</h3>
              <p class="step-desc">
                Run <code class="step-code">irona /your/workspace</code> — irona walks the
                directory tree and finds every build artifact directory it knows about.
                No config, no manifest. It just works.
              </p>
            </div>
          </article>

          <article class="step" role="listitem">
            <div class="step-number" aria-hidden="true">02</div>
            <div class="step-body">
              <h3 class="step-title">Review the interactive checklist</h3>
              <p class="step-desc">
                A Ratatui TUI opens showing every artifact directory with its on-disk size.
                Navigate with <span class="step-key"></span> <span class="step-key"></span>,
                toggle entries with <span class="step-key">Space</span>.
                Nothing is touched until you say so.
              </p>

              <div class="tui-preview" aria-label="Terminal UI preview showing artifact directories" role="img">
                <span class="tui-line tui-selected">  <span class="tui-checked">▶ [✓]</span> <span class="tui-path">~/projects/my-app/target</span>             <span class="tui-size">4.2 GB</span></span>
                <div class="tui-line">    <span class="tui-checked">[✓]</span> <span class="tui-path">~/projects/website/node_modules</span>          <span class="tui-size">812 MB</span></div>
                <div class="tui-line">    <span class="tui-unchecked">[ ]</span> <span class="tui-path">~/projects/dotnet-api/bin</span>               <span class="tui-size">340 MB</span></div>
                <div class="tui-line">    <span class="tui-unchecked">[ ]</span> <span class="tui-path">~/projects/dotnet-api/obj</span>               <span class="tui-size"> 98 MB</span></div>
                <div class="tui-line">    <span class="tui-checked">[✓]</span> <span class="tui-path">~/projects/old-site/node_modules</span>         <span class="tui-size">1.1 GB</span></div>
                <div class="tui-hint">  2 selected · 5.1 GB will be freed  ·  [space] toggle  [d] delete  [q] quit</div>
              </div>
            </div>
          </article>

          <article class="step" role="listitem">
            <div class="step-number" aria-hidden="true">03</div>
            <div class="step-body">
              <h3 class="step-title">Press <span class="step-key">d</span> to delete</h3>
              <p class="step-desc">
                irona removes every checked directory. Disk space reclaimed.
                Press <span class="step-key">q</span> to quit.
                Build artifacts are regenerated by your toolchain whenever you need them again.
              </p>
            </div>
          </article>

        </div>
      </div>
    </section>

    <!-- ── Supported languages ───────────────────────────────────────── -->
    <section id="languages" aria-labelledby="langs-heading">
      <div class="container">
        <p class="section-label" id="langs-heading">Supported languages</p>

        <div class="langs">

          <!-- Rust -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <circle cx="16" cy="16" r="5" stroke="#39ff14" stroke-width="1.5"/>
              <path d="M16 4v4M16 24v4M4 16h4M24 16h4" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
              <path d="M7.03 7.03l2.83 2.83M22.14 22.14l2.83 2.83M7.03 24.97l2.83-2.83M22.14 9.86l2.83-2.83"
                stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
            </svg>
            <h3 class="lang-name">Rust</h3>
            <div class="lang-dirs">
              <span class="dir-badge">target/</span>
            </div>
          </article>

          <!-- Node.js -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M16 3L29 10.5v15L16 29 3 24.5v-15L16 3z"
                stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <path d="M16 10v12M11 13l5-3 5 3" stroke="#39ff14" stroke-width="1.5"
                stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
            <h3 class="lang-name">Node.js</h3>
            <div class="lang-dirs">
              <span class="dir-badge">node_modules/</span>
            </div>
          </article>

          <!-- C# / .NET -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M16 3l13 13-13 13L3 16 16 3z"
                stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <path d="M10 16h12M16 10v12" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
            </svg>
            <h3 class="lang-name">C# / .NET</h3>
            <div class="lang-dirs">
              <span class="dir-badge">bin/</span>
              <span class="dir-badge">obj/</span>
            </div>
          </article>

          <!-- .NET NuGet / Paket -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <rect x="6" y="6" width="8" height="8" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <rect x="18" y="6" width="8" height="8" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <rect x="6" y="18" width="8" height="8" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <rect x="18" y="18" width="8" height="8" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
            </svg>
            <h3 class="lang-name">NuGet / Paket</h3>
            <div class="lang-dirs">
              <span class="dir-badge">packages/</span>
              <span class="dir-badge">.paket/</span>
            </div>
          </article>

          <!-- Python -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M16 4C10 4 7 7 7 11v2h9v1H7c-3 0-4 2-4 5s2 5 4 5h2v-3c0-3 2-5 7-5s7 2 7 5v3h2c2 0 4-2 4-5s-1-5-4-5h-9v-1h9v-2c0-4-3-7-9-7z"
                stroke="#39ff14" stroke-width="1.2" stroke-linejoin="round"/>
              <circle cx="12" cy="10" r="1.2" fill="#39ff14"/>
              <circle cx="20" cy="22" r="1.2" fill="#39ff14"/>
            </svg>
            <h3 class="lang-name">Python</h3>
            <div class="lang-dirs">
              <span class="dir-badge">.venv/</span>
              <span class="dir-badge">venv/</span>
            </div>
          </article>

          <!-- Java / Maven -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M12 4h8l4 4v16l-4 4H12l-4-4V8l4-4z" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <path d="M16 10v8M13 15l3 3 3-3" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
            <h3 class="lang-name">Java / Maven</h3>
            <div class="lang-dirs">
              <span class="dir-badge">target/</span>
            </div>
          </article>

          <!-- Gradle -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M6 10c0-2 2-4 5-4s5 2 5 4-2 4-5 4-5-2-5-4z" stroke="#39ff14" stroke-width="1.5"/>
              <path d="M16 22c0-2 2-4 5-4s5 2 5 4-2 4-5 4-5-2-5-4z" stroke="#39ff14" stroke-width="1.5"/>
              <path d="M16 10h4M12 22H8" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
            </svg>
            <h3 class="lang-name">Gradle</h3>
            <div class="lang-dirs">
              <span class="dir-badge">build/</span>
              <span class="dir-badge">.gradle/</span>
            </div>
          </article>

          <!-- Go -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M4 14h6c1 0 2 1 2 2s-1 2-2 2H8" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
              <path d="M14 14h8a4 4 0 010 8h-8V14z" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <circle cx="22" cy="18" r="1.5" fill="#39ff14"/>
            </svg>
            <h3 class="lang-name">Go</h3>
            <div class="lang-dirs">
              <span class="dir-badge">vendor/</span>
            </div>
          </article>

          <!-- PHP -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <ellipse cx="16" cy="16" rx="13" ry="7" stroke="#39ff14" stroke-width="1.5"/>
              <path d="M10 13v6M10 16h5c1.5 0 2.5-1 2.5-2s-1-2-2.5-2" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
              <path d="M19 13v6M19 16h4" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
            </svg>
            <h3 class="lang-name">PHP</h3>
            <div class="lang-dirs">
              <span class="dir-badge">vendor/</span>
            </div>
          </article>

          <!-- Ruby -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M16 4l10 6v12l-10 6L6 22V10L16 4z" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <path d="M16 4v24M6 10l20 12M26 10L6 22" stroke="#39ff14" stroke-width="1" stroke-linejoin="round" opacity="0.35"/>
            </svg>
            <h3 class="lang-name">Ruby</h3>
            <div class="lang-dirs">
              <span class="dir-badge">vendor/</span>
              <span class="dir-badge">.bundle/</span>
            </div>
          </article>

          <!-- Swift -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M26 8C20 4 10 6 7 14c-2 5 1 9 4 11-2-3-2-6 0-9 3 4 8 6 13 5-2-2-4-5-3-8 3 3 7 5 5 13 3-2 5-7 4-12-1-3-3-5-4-6z"
                stroke="#39ff14" stroke-width="1.3" stroke-linejoin="round"/>
            </svg>
            <h3 class="lang-name">Swift / SPM</h3>
            <div class="lang-dirs">
              <span class="dir-badge">.build/</span>
            </div>
          </article>

          <!-- Haskell -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M4 8l8 8-8 8" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
              <path d="M10 8l8 8-8 8" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
              <path d="M18 13h10M18 19h10" stroke="#39ff14" stroke-width="1.5" stroke-linecap="round"/>
            </svg>
            <h3 class="lang-name">Haskell</h3>
            <div class="lang-dirs">
              <span class="dir-badge">.stack-work/</span>
            </div>
          </article>

          <!-- Elm -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M16 4L28 16 16 28 4 16 16 4z" stroke="#39ff14" stroke-width="1.5" stroke-linejoin="round"/>
              <path d="M16 4L4 16h24L16 4z" stroke="#39ff14" stroke-width="1" stroke-linejoin="round" opacity="0.35"/>
            </svg>
            <h3 class="lang-name">Elm</h3>
            <div class="lang-dirs">
              <span class="dir-badge">elm-stuff/</span>
            </div>
          </article>

          <!-- Dart / Flutter -->
          <article class="lang-card">
            <svg class="lang-icon" viewBox="0 0 32 32" fill="none" aria-hidden="true">
              <path d="M18 3L29 14l-7 1-11-8 7-7z" stroke="#39ff14" stroke-width="1.3" stroke-linejoin="round"/>
              <path d="M3 19l9-9 9 9-9 9-9-9z" stroke="#39ff14" stroke-width="1.3" stroke-linejoin="round"/>
            </svg>
            <h3 class="lang-name">Dart / Flutter</h3>
            <div class="lang-dirs">
              <span class="dir-badge">.dart_tool/</span>
              <span class="dir-badge">build/</span>
            </div>
          </article>

        </div>
      </div>
    </section>

  </main>

  <!-- ── Download ────────────────────────────────────────────────────── -->
  <section id="download" aria-labelledby="download-heading">
    <div class="container">
      <p class="section-label" id="download-heading">Download</p>

      <div class="steps" role="list">
        <article class="step" role="listitem">
          <div class="step-number" aria-hidden="true"></div>
          <div class="step-body">
            <h3 class="step-title">crates.io</h3>
            <p class="step-desc">
              Install via Cargo — the binary is named <code class="step-code">irona</code>, the crate is <code class="step-code">irona-cli</code>.
            </p>
            <div style="margin-top:14px">
              <code class="step-code">$ cargo install irona-cli</code>
            </div>
          </div>
        </article>

        <article class="step" role="listitem">
          <div class="step-number" aria-hidden="true"></div>
          <div class="step-body">
            <h3 class="step-title">Pre-built binaries</h3>
            <p class="step-desc" style="margin-bottom:16px">
              Download from <a href="https://github.com/kunjee17/irona/releases" target="_blank" rel="noopener" style="color:var(--phosphor);text-decoration:none;border-bottom:1px solid var(--phosphor-dim)">GitHub Releases</a> — no Rust toolchain needed.
            </p>
            <div class="langs" style="background:var(--bg)">
              <div class="lang-card" style="padding:12px 16px">
                <div class="lang-name" style="font-size:11px;margin-bottom:8px;color:var(--text-dim)">Linux</div>
                <div class="lang-dirs">
                  <span class="dir-badge">x64 .tar.gz</span>
                  <span class="dir-badge">x64-musl .tar.gz</span>
                  <span class="dir-badge">ARM64 .tar.gz</span>
                </div>
              </div>
              <div class="lang-card" style="padding:12px 16px">
                <div class="lang-name" style="font-size:11px;margin-bottom:8px;color:var(--text-dim)">macOS</div>
                <div class="lang-dirs">
                  <span class="dir-badge">Apple Silicon .tar.gz</span>
                  <span class="dir-badge">Intel .tar.gz</span>
                </div>
              </div>
              <div class="lang-card" style="padding:12px 16px">
                <div class="lang-name" style="font-size:11px;margin-bottom:8px;color:var(--text-dim)">Windows</div>
                <div class="lang-dirs">
                  <span class="dir-badge">x64 .zip</span>
                </div>
              </div>
            </div>
          </div>
        </article>
      </div>
    </div>
  </section>

  <!-- ── Name origin ──────────────────────────────────────────────────── -->
  <section id="about" aria-labelledby="about-heading">
    <div class="container">
      <p class="section-label" id="about-heading">About the name</p>
      <div class="step" style="border:1px solid var(--border)">
        <div class="step-number" aria-hidden="true"></div>
        <div class="step-body">
          <p class="step-desc">
            <strong style="color:var(--white)">Irona</strong> is the loyal robotic maid from the Richie Rich comic series —
            always tidying up, always efficient. That's exactly what this tool does for your workspace.
            Named in her honour.
          </p>
        </div>
      </div>
    </div>
  </section>

  <!-- ── Footer ──────────────────────────────────────────────────────── -->
  <footer role="contentinfo">
    <div class="container">
      <p class="footer-brand">
        <strong>irona</strong> — MIT licensed · built with Rust &amp; Ratatui
      </p>
      <div class="footer-links">
        <a href="https://github.com/kunjee17/irona" target="_blank" rel="noopener" aria-label="irona on GitHub">
          <svg viewBox="0 0 24 24" aria-hidden="true">
            <path d="M12 2C6.477 2 2 6.477 2 12c0 4.418 2.865 8.166 6.839 9.489.5.092.682-.217.682-.482
              0-.237-.008-.866-.013-1.7-2.782.603-3.369-1.342-3.369-1.342-.454-1.155-1.11-1.462-1.11-1.462
              -.908-.62.069-.608.069-.608 1.003.07 1.531 1.03 1.531 1.03.892 1.529 2.341 1.088 2.91.832
              .092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.11-4.555-4.943 0-1.091.39-1.984 1.029-2.683
              -.103-.253-.446-1.27.098-2.647 0 0 .84-.269 2.75 1.025A9.578 9.578 0 0112 6.836a9.59 9.59 0
              012.504.337c1.909-1.294 2.747-1.025 2.747-1.025.546 1.377.202 2.394.1 2.647.64.699 1.028
              1.592 1.028 2.683 0 3.842-2.339 4.687-4.566 4.935.359.309.678.919.678 1.852 0 1.336-.012
              2.415-.012 2.743 0 .267.18.578.688.48C19.138 20.163 22 16.418 22 12c0-5.523-4.477-10-10-10z"/>
          </svg>
          GitHub
        </a>
        <a href="https://crates.io/crates/irona-cli" target="_blank" rel="noopener" aria-label="irona-cli on crates.io">
          <svg viewBox="0 0 24 24" aria-hidden="true">
            <path d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4"/>
          </svg>
          crates.io
        </a>
      </div>
    </div>
  </footer>

  <script>
    function copyInstall(btn) {
      const cmd = 'cargo install irona-cli';
      navigator.clipboard.writeText(cmd).then(() => {
        const fb = document.getElementById('copy-fb');
        fb.classList.add('show');
        setTimeout(() => fb.classList.remove('show'), 2000);
      });
    }
  </script>

</body>
</html>