corp-finance-core 1.1.0

Institutional-grade corporate finance calculations with 128-bit decimal precision — DCF, WACC, comps, LBO, credit metrics, derivatives, fixed income, options, and 60+ specialty modules. No f64 in financials. WASM-compatible.
Documentation
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
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
use rust_decimal::Decimal;
use rust_decimal_macros::dec;
use serde::{Deserialize, Serialize};

use crate::error::CorpFinanceError;
use crate::CorpFinanceResult;

// ---------------------------------------------------------------------------
// Types
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum IgaModel {
    Model1,
    Model2,
    NonIGA,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum AccountType {
    Depository,
    Custodial,
    EquityInterest,
    DebtInterest,
    CashValueInsurance,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum RiskLevel {
    Low,
    Medium,
    High,
    Critical,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum DueDiligenceLevel {
    Simplified,
    Standard,
    Enhanced,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum CrsApproach {
    Wider,
    Narrower,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FatcaStatus {
    pub compliant: bool,
    pub withholding_risk_pct: Decimal,
    pub reporting_obligations: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CrsStatus {
    pub reportable_jurisdictions: Vec<String>,
    pub due_diligence_level: DueDiligenceLevel,
    pub approach: CrsApproach,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReportingDeadline {
    pub jurisdiction: String,
    pub framework: String,
    pub deadline_description: String,
    pub reporting_year: i32,
}

// ---------------------------------------------------------------------------
// Input / Output
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FatcaCrsReportingInput {
    pub institution_name: String,
    pub jurisdiction: String,
    pub iga_model: IgaModel,
    pub account_count: u64,
    pub aggregate_balance_usd: Decimal,
    pub account_types: Vec<AccountType>,
    pub us_indicia_found: u32,
    pub has_giin: bool,
    pub crs_participating: bool,
    pub crs_jurisdictions: Vec<String>,
    pub reporting_year: i32,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FatcaCrsReportingOutput {
    pub fatca_status: FatcaStatus,
    pub crs_status: CrsStatus,
    pub compliance_score: Decimal,
    pub risk_level: RiskLevel,
    pub withholding_exposure_usd: Decimal,
    pub reporting_deadlines: Vec<ReportingDeadline>,
    pub remediation_items: Vec<String>,
    pub methodology: String,
    pub assumptions: Vec<String>,
    pub warnings: Vec<String>,
}

// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------

const FATCA_WITHHOLDING_RATE: Decimal = dec!(0.30);
const FATCA_INDIVIDUAL_THRESHOLD: Decimal = dec!(50_000);
const FATCA_ENTITY_THRESHOLD: Decimal = dec!(250_000);

/// Wider-approach CRS jurisdictions (example set for analysis purposes).
const WIDER_APPROACH_JURISDICTIONS: &[&str] = &[
    "GB", "DE", "FR", "AU", "CA", "JP", "NL", "IE", "LU", "SG", "HK", "NZ", "NO", "SE", "DK", "FI",
    "IT", "ES", "BE", "AT", "PT", "CZ", "PL",
];

// ---------------------------------------------------------------------------
// Public API
// ---------------------------------------------------------------------------

/// Analyze FATCA and CRS reporting obligations for a financial institution.
///
/// Evaluates compliance readiness across due diligence, reporting, and
/// withholding dimensions. Returns a comprehensive assessment including
/// compliance score (0-100), risk level, withholding exposure, deadlines,
/// and remediation items.
pub fn analyze_fatca_crs_reporting(
    input: &FatcaCrsReportingInput,
) -> CorpFinanceResult<FatcaCrsReportingOutput> {
    validate_reporting_input(input)?;

    let mut warnings: Vec<String> = Vec::new();
    let mut remediation_items: Vec<String> = Vec::new();

    // ------------------------------------------------------------------
    // 1. FATCA Status
    // ------------------------------------------------------------------
    let fatca_status = assess_fatca_status(input, &mut warnings, &mut remediation_items);

    // ------------------------------------------------------------------
    // 2. CRS Status
    // ------------------------------------------------------------------
    let crs_status = assess_crs_status(input, &mut warnings, &mut remediation_items);

    // ------------------------------------------------------------------
    // 3. Compliance Score (0-100)
    // ------------------------------------------------------------------
    let compliance_score = calculate_compliance_score(input, &fatca_status, &crs_status);

    // ------------------------------------------------------------------
    // 4. Risk Level
    // ------------------------------------------------------------------
    let risk_level = classify_risk(compliance_score, input);

    // ------------------------------------------------------------------
    // 5. Withholding Exposure
    // ------------------------------------------------------------------
    let withholding_exposure_usd = calculate_withholding_exposure(input, &fatca_status);

    if withholding_exposure_usd > Decimal::ZERO {
        warnings.push(format!(
            "Potential FATCA withholding exposure of ${} identified.",
            withholding_exposure_usd
        ));
    }

    // ------------------------------------------------------------------
    // 6. Reporting Deadlines
    // ------------------------------------------------------------------
    let reporting_deadlines = build_reporting_deadlines(input);

    // ------------------------------------------------------------------
    // 7. Assemble Output
    // ------------------------------------------------------------------
    let assumptions = vec![
        "FATCA withholding rate assumed at 30% on FDAP income for non-compliant accounts.".into(),
        format!(
            "FATCA individual reporting threshold: ${}, entity threshold: ${}.",
            FATCA_INDIVIDUAL_THRESHOLD, FATCA_ENTITY_THRESHOLD
        ),
        "CRS approach determined by institution jurisdiction.".into(),
        "Compliance scoring weights: GIIN registration 25%, due diligence 25%, \
         reporting readiness 25%, withholding controls 25%."
            .into(),
    ];

    let methodology = "FATCA/CRS Reporting Analysis: assess compliance across IGA model, \
        GIIN registration, due diligence procedures, CRS participation, and \
        withholding obligations per US IRC Chapter 4 and OECD CRS framework."
        .to_string();

    Ok(FatcaCrsReportingOutput {
        fatca_status,
        crs_status,
        compliance_score,
        risk_level,
        withholding_exposure_usd,
        reporting_deadlines,
        remediation_items,
        methodology,
        assumptions,
        warnings,
    })
}

// ---------------------------------------------------------------------------
// FATCA Assessment
// ---------------------------------------------------------------------------

fn assess_fatca_status(
    input: &FatcaCrsReportingInput,
    warnings: &mut Vec<String>,
    remediation: &mut Vec<String>,
) -> FatcaStatus {
    let mut obligations: Vec<String> = Vec::new();
    let mut compliant = true;
    let mut withholding_risk_pct = Decimal::ZERO;

    // GIIN registration check
    if !input.has_giin {
        compliant = false;
        withholding_risk_pct = FATCA_WITHHOLDING_RATE;
        remediation.push(
            "Register for a GIIN (Global Intermediary Identification Number) with the IRS.".into(),
        );
        warnings.push(
            "Missing GIIN registration exposes the institution to 30% FATCA withholding.".into(),
        );
    }

    // IGA-specific obligations
    match input.iga_model {
        IgaModel::Model1 => {
            obligations.push(
                "Report US-reportable accounts to local tax authority for exchange with IRS."
                    .into(),
            );
            obligations.push("Perform due diligence to identify US indicia in accounts.".into());
        }
        IgaModel::Model2 => {
            obligations.push("Report directly to the IRS with local authority consent.".into());
            obligations.push("Register with IRS and maintain GIIN.".into());
            obligations.push("Perform due diligence to identify US indicia in accounts.".into());
        }
        IgaModel::NonIGA => {
            obligations.push("Register directly with IRS as a Participating FFI.".into());
            obligations
                .push("Withhold 30% on FDAP payments to non-compliant account holders.".into());
            obligations.push("Report all US-reportable accounts directly to the IRS.".into());
            if !input.has_giin {
                withholding_risk_pct = FATCA_WITHHOLDING_RATE;
            }
        }
    }

    // US indicia check
    if input.us_indicia_found > 0 {
        obligations.push(format!(
            "Resolve {} US indicia found across accounts (US birthplace, address, phone, \
             standing instructions, or power of attorney).",
            input.us_indicia_found
        ));
        if !input.has_giin {
            remediation.push(format!(
                "Investigate and document {} US indicia before next reporting deadline.",
                input.us_indicia_found
            ));
        }
    }

    // Account type obligations
    if input
        .account_types
        .contains(&AccountType::CashValueInsurance)
    {
        obligations.push("Cash value insurance contracts require Annex II review.".into());
    }
    if input.account_types.contains(&AccountType::EquityInterest)
        || input.account_types.contains(&AccountType::DebtInterest)
    {
        obligations.push(
            "Equity/debt interests require investment entity classification analysis.".into(),
        );
    }

    // Threshold-based reporting
    if input.aggregate_balance_usd > FATCA_ENTITY_THRESHOLD {
        obligations.push(
            "Aggregate balance exceeds entity threshold ($250,000); full reporting required."
                .into(),
        );
    } else if input.aggregate_balance_usd > FATCA_INDIVIDUAL_THRESHOLD {
        obligations.push(
            "Aggregate balance exceeds individual threshold ($50,000); reporting required.".into(),
        );
    }

    // Non-IGA without GIIN is non-compliant
    if input.iga_model == IgaModel::NonIGA && !input.has_giin {
        compliant = false;
        remediation.push(
            "Non-IGA jurisdiction without GIIN: register as Participating FFI immediately.".into(),
        );
    }

    FatcaStatus {
        compliant,
        withholding_risk_pct,
        reporting_obligations: obligations,
    }
}

// ---------------------------------------------------------------------------
// CRS Assessment
// ---------------------------------------------------------------------------

fn assess_crs_status(
    input: &FatcaCrsReportingInput,
    warnings: &mut Vec<String>,
    remediation: &mut Vec<String>,
) -> CrsStatus {
    let mut reportable_jurisdictions: Vec<String> = Vec::new();

    if !input.crs_participating {
        warnings.push(
            "Institution is not CRS-participating; no CRS reporting obligations apply.".into(),
        );
        return CrsStatus {
            reportable_jurisdictions,
            due_diligence_level: DueDiligenceLevel::Simplified,
            approach: CrsApproach::Narrower,
        };
    }

    // Reportable jurisdictions = CRS partner jurisdictions
    reportable_jurisdictions = input.crs_jurisdictions.clone();

    if reportable_jurisdictions.is_empty() {
        remediation.push(
            "CRS participating but no reportable jurisdictions specified. \
             Identify all CRS partner jurisdictions for reporting."
                .into(),
        );
    }

    // Due diligence level based on account volume and balance
    let due_diligence_level =
        if input.aggregate_balance_usd > dec!(1_000_000) || input.account_count > 1000 {
            DueDiligenceLevel::Enhanced
        } else if input.aggregate_balance_usd > dec!(250_000) || input.account_count > 100 {
            DueDiligenceLevel::Standard
        } else {
            DueDiligenceLevel::Simplified
        };

    // Wider vs narrower approach based on institution jurisdiction
    let approach =
        if WIDER_APPROACH_JURISDICTIONS.contains(&input.jurisdiction.to_uppercase().as_str()) {
            CrsApproach::Wider
        } else {
            CrsApproach::Narrower
        };

    if approach == CrsApproach::Wider {
        warnings.push(
            "Wider-approach jurisdiction: must report on all non-resident account holders, \
             not only those in CRS-partner jurisdictions."
                .into(),
        );
    }

    CrsStatus {
        reportable_jurisdictions,
        due_diligence_level,
        approach,
    }
}

// ---------------------------------------------------------------------------
// Compliance Scoring
// ---------------------------------------------------------------------------

/// Calculate compliance score on 0-100 scale.
/// Four equally-weighted dimensions (25 pts each):
///   1. GIIN/Registration readiness
///   2. Due diligence procedures
///   3. Reporting readiness
///   4. Withholding controls
fn calculate_compliance_score(
    input: &FatcaCrsReportingInput,
    fatca: &FatcaStatus,
    crs: &CrsStatus,
) -> Decimal {
    let mut score = Decimal::ZERO;

    // Dimension 1: GIIN / Registration (25 pts)
    if input.has_giin {
        score += dec!(25);
    } else {
        // Partial credit if IGA Model 1 (local authority handles some registration)
        if input.iga_model == IgaModel::Model1 {
            score += dec!(10);
        }
    }

    // Dimension 2: Due Diligence (25 pts)
    // Credit for having identified US indicia (means DD is happening)
    let dd_score = if input.account_count == 0 {
        dec!(25) // No accounts = no DD needed = full marks
    } else {
        let mut pts = dec!(10); // base credit for operating
                                // Enhanced DD gets more credit
        match crs.due_diligence_level {
            DueDiligenceLevel::Enhanced => pts += dec!(10),
            DueDiligenceLevel::Standard => pts += dec!(7),
            DueDiligenceLevel::Simplified => pts += dec!(5),
        }
        // Having found and reported indicia = active monitoring
        if input.us_indicia_found > 0 {
            pts += dec!(5);
        }
        pts.min(dec!(25))
    };
    score += dd_score;

    // Dimension 3: Reporting Readiness (25 pts)
    let reporting_score = {
        let mut pts = Decimal::ZERO;
        // CRS participation
        if input.crs_participating {
            pts += dec!(10);
        }
        // Has jurisdictions identified
        if !input.crs_jurisdictions.is_empty() {
            pts += dec!(5);
        }
        // FATCA reporting obligations identified
        if !fatca.reporting_obligations.is_empty() {
            pts += dec!(5);
        }
        // Account types identified (data completeness)
        if !input.account_types.is_empty() {
            pts += dec!(5);
        }
        pts.min(dec!(25))
    };
    score += reporting_score;

    // Dimension 4: Withholding Controls (25 pts)
    let withholding_score = if fatca.withholding_risk_pct == Decimal::ZERO {
        dec!(25)
    } else if fatca.withholding_risk_pct <= dec!(0.15) {
        dec!(15)
    } else {
        dec!(5) // High withholding risk = low score
    };
    score += withholding_score;

    score.min(dec!(100))
}

// ---------------------------------------------------------------------------
// Risk Classification
// ---------------------------------------------------------------------------

fn classify_risk(compliance_score: Decimal, input: &FatcaCrsReportingInput) -> RiskLevel {
    // Base risk from compliance score
    let base_risk = if compliance_score >= dec!(80) {
        RiskLevel::Low
    } else if compliance_score >= dec!(60) {
        RiskLevel::Medium
    } else if compliance_score >= dec!(40) {
        RiskLevel::High
    } else {
        RiskLevel::Critical
    };

    // Escalate for critical factors
    if !input.has_giin && input.iga_model == IgaModel::NonIGA {
        return RiskLevel::Critical;
    }
    if !input.has_giin && input.us_indicia_found > 10 {
        return match base_risk {
            RiskLevel::Low => RiskLevel::Medium,
            RiskLevel::Medium => RiskLevel::High,
            _ => RiskLevel::Critical,
        };
    }

    base_risk
}

// ---------------------------------------------------------------------------
// Withholding Exposure
// ---------------------------------------------------------------------------

fn calculate_withholding_exposure(input: &FatcaCrsReportingInput, fatca: &FatcaStatus) -> Decimal {
    if fatca.compliant {
        return Decimal::ZERO;
    }

    // Exposure = aggregate balance * withholding rate * proportion of accounts with indicia
    let indicia_proportion = if input.account_count > 0 {
        Decimal::from(input.us_indicia_found) / Decimal::from(input.account_count)
    } else {
        Decimal::ZERO
    };

    // Cap proportion at 1.0 (indicia count can exceed account count in edge cases)
    let capped_proportion = indicia_proportion.min(Decimal::ONE);

    input.aggregate_balance_usd * FATCA_WITHHOLDING_RATE * capped_proportion
}

// ---------------------------------------------------------------------------
// Reporting Deadlines
// ---------------------------------------------------------------------------

fn build_reporting_deadlines(input: &FatcaCrsReportingInput) -> Vec<ReportingDeadline> {
    let mut deadlines: Vec<ReportingDeadline> = Vec::new();
    let year = input.reporting_year;

    // FATCA deadline
    match input.iga_model {
        IgaModel::Model1 => {
            deadlines.push(ReportingDeadline {
                jurisdiction: input.jurisdiction.clone(),
                framework: "FATCA (IGA Model 1)".into(),
                deadline_description: format!(
                    "Report to local tax authority by September 30, {} \
                     (local authority exchanges with IRS).",
                    year + 1
                ),
                reporting_year: year,
            });
        }
        IgaModel::Model2 => {
            deadlines.push(ReportingDeadline {
                jurisdiction: input.jurisdiction.clone(),
                framework: "FATCA (IGA Model 2)".into(),
                deadline_description: format!("Report directly to IRS by March 31, {}.", year + 1),
                reporting_year: year,
            });
        }
        IgaModel::NonIGA => {
            deadlines.push(ReportingDeadline {
                jurisdiction: input.jurisdiction.clone(),
                framework: "FATCA (Non-IGA)".into(),
                deadline_description: format!(
                    "Report directly to IRS by March 31, {}. \
                     Withholding obligations ongoing throughout the year.",
                    year + 1
                ),
                reporting_year: year,
            });
        }
    }

    // CRS deadlines
    if input.crs_participating {
        deadlines.push(ReportingDeadline {
            jurisdiction: input.jurisdiction.clone(),
            framework: "CRS".into(),
            deadline_description: format!(
                "CRS reporting to local competent authority typically due by \
                 June 30 to September 30, {} (varies by jurisdiction).",
                year + 1
            ),
            reporting_year: year,
        });
    }

    deadlines
}

// ---------------------------------------------------------------------------
// Validation
// ---------------------------------------------------------------------------

fn validate_reporting_input(input: &FatcaCrsReportingInput) -> CorpFinanceResult<()> {
    if input.institution_name.trim().is_empty() {
        return Err(CorpFinanceError::InvalidInput {
            field: "institution_name".into(),
            reason: "Institution name cannot be empty".into(),
        });
    }
    if input.jurisdiction.trim().is_empty() {
        return Err(CorpFinanceError::InvalidInput {
            field: "jurisdiction".into(),
            reason: "Jurisdiction cannot be empty".into(),
        });
    }
    if input.aggregate_balance_usd < Decimal::ZERO {
        return Err(CorpFinanceError::InvalidInput {
            field: "aggregate_balance_usd".into(),
            reason: "Aggregate balance cannot be negative".into(),
        });
    }
    if input.reporting_year < 2010 || input.reporting_year > 2100 {
        return Err(CorpFinanceError::InvalidInput {
            field: "reporting_year".into(),
            reason: "Reporting year must be between 2010 and 2100".into(),
        });
    }
    Ok(())
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;

    // ---------------------------------------------------------------
    // Test Helpers
    // ---------------------------------------------------------------

    fn base_input() -> FatcaCrsReportingInput {
        FatcaCrsReportingInput {
            institution_name: "Test Bank AG".into(),
            jurisdiction: "DE".into(),
            iga_model: IgaModel::Model1,
            account_count: 500,
            aggregate_balance_usd: dec!(100_000_000),
            account_types: vec![AccountType::Depository, AccountType::Custodial],
            us_indicia_found: 5,
            has_giin: true,
            crs_participating: true,
            crs_jurisdictions: vec!["US".into(), "GB".into(), "FR".into()],
            reporting_year: 2025,
        }
    }

    // ---------------------------------------------------------------
    // IGA Model Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_iga_model1_compliant_with_giin() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.fatca_status.compliant);
        assert_eq!(result.fatca_status.withholding_risk_pct, Decimal::ZERO);
        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("local tax authority")));
    }

    #[test]
    fn test_iga_model2_reporting_directly_to_irs() {
        let mut input = base_input();
        input.iga_model = IgaModel::Model2;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.fatca_status.compliant);
        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("directly to the IRS")));
    }

    #[test]
    fn test_iga_model2_requires_giin() {
        let mut input = base_input();
        input.iga_model = IgaModel::Model2;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("GIIN")));
    }

    #[test]
    fn test_non_iga_withholding_obligation() {
        let mut input = base_input();
        input.iga_model = IgaModel::NonIGA;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("Withhold 30%")));
    }

    #[test]
    fn test_non_iga_without_giin_critical_risk() {
        let mut input = base_input();
        input.iga_model = IgaModel::NonIGA;
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(!result.fatca_status.compliant);
        assert_eq!(result.fatca_status.withholding_risk_pct, dec!(0.30));
        assert_eq!(result.risk_level, RiskLevel::Critical);
    }

    #[test]
    fn test_non_iga_with_giin_compliant() {
        let mut input = base_input();
        input.iga_model = IgaModel::NonIGA;
        input.has_giin = true;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.fatca_status.compliant);
    }

    // ---------------------------------------------------------------
    // CRS Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_crs_wider_approach_for_de_jurisdiction() {
        let input = base_input(); // jurisdiction = "DE"
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.crs_status.approach, CrsApproach::Wider);
    }

    #[test]
    fn test_crs_narrower_approach_for_non_wider_jurisdiction() {
        let mut input = base_input();
        input.jurisdiction = "BM".into(); // Bermuda, not in wider list

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.crs_status.approach, CrsApproach::Narrower);
    }

    #[test]
    fn test_crs_not_participating_no_obligations() {
        let mut input = base_input();
        input.crs_participating = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.crs_status.reportable_jurisdictions.is_empty());
        assert_eq!(
            result.crs_status.due_diligence_level,
            DueDiligenceLevel::Simplified
        );
    }

    #[test]
    fn test_crs_participating_with_jurisdictions() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.crs_status.reportable_jurisdictions.len(), 3);
        assert!(result
            .crs_status
            .reportable_jurisdictions
            .contains(&"US".to_string()));
    }

    #[test]
    fn test_crs_enhanced_dd_for_large_balance() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(5_000_000);
        input.account_count = 50;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(
            result.crs_status.due_diligence_level,
            DueDiligenceLevel::Enhanced
        );
    }

    #[test]
    fn test_crs_enhanced_dd_for_many_accounts() {
        let mut input = base_input();
        input.account_count = 2000;
        input.aggregate_balance_usd = dec!(100_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(
            result.crs_status.due_diligence_level,
            DueDiligenceLevel::Enhanced
        );
    }

    #[test]
    fn test_crs_standard_dd_for_moderate_balance() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(500_000);
        input.account_count = 50;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(
            result.crs_status.due_diligence_level,
            DueDiligenceLevel::Standard
        );
    }

    #[test]
    fn test_crs_simplified_dd_for_small_balance_few_accounts() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(100_000);
        input.account_count = 50;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(
            result.crs_status.due_diligence_level,
            DueDiligenceLevel::Simplified
        );
    }

    #[test]
    fn test_crs_wider_approach_warning_generated() {
        let input = base_input(); // DE = wider approach
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.warnings.iter().any(|w| w.contains("Wider-approach")));
    }

    #[test]
    fn test_crs_empty_jurisdictions_remediation() {
        let mut input = base_input();
        input.crs_jurisdictions = vec![];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .remediation_items
            .iter()
            .any(|r| r.contains("CRS partner jurisdictions")));
    }

    // ---------------------------------------------------------------
    // Compliance Score Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_compliance_score_fully_compliant() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(
            result.compliance_score >= dec!(70),
            "Fully compliant institution should score >= 70, got {}",
            result.compliance_score
        );
    }

    #[test]
    fn test_compliance_score_no_giin_lower() {
        let with_giin = {
            let input = base_input();
            analyze_fatca_crs_reporting(&input)
                .unwrap()
                .compliance_score
        };
        let without_giin = {
            let mut input = base_input();
            input.has_giin = false;
            analyze_fatca_crs_reporting(&input)
                .unwrap()
                .compliance_score
        };

        assert!(
            without_giin < with_giin,
            "Score without GIIN ({}) should be lower than with GIIN ({})",
            without_giin,
            with_giin
        );
    }

    #[test]
    fn test_compliance_score_model1_partial_credit_no_giin() {
        let mut input = base_input();
        input.has_giin = false;
        input.iga_model = IgaModel::Model1;

        let model1_result = analyze_fatca_crs_reporting(&input).unwrap();

        input.iga_model = IgaModel::Model2;
        let model2_result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(
            model1_result.compliance_score > model2_result.compliance_score,
            "Model 1 without GIIN ({}) should score higher than Model 2 without GIIN ({}) \
             due to partial credit",
            model1_result.compliance_score,
            model2_result.compliance_score
        );
    }

    #[test]
    fn test_compliance_score_zero_accounts_full_dd_credit() {
        let mut input = base_input();
        input.account_count = 0;
        input.aggregate_balance_usd = Decimal::ZERO;
        input.us_indicia_found = 0;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // With no accounts, DD dimension should give full 25 points
        assert!(
            result.compliance_score >= dec!(70),
            "Zero accounts should get full DD credit, got score {}",
            result.compliance_score
        );
    }

    #[test]
    fn test_compliance_score_not_crs_participating_lower() {
        let participating = {
            let input = base_input();
            analyze_fatca_crs_reporting(&input)
                .unwrap()
                .compliance_score
        };
        let not_participating = {
            let mut input = base_input();
            input.crs_participating = false;
            analyze_fatca_crs_reporting(&input)
                .unwrap()
                .compliance_score
        };

        assert!(
            not_participating < participating,
            "Non-CRS score ({}) should be lower than CRS score ({})",
            not_participating,
            participating
        );
    }

    #[test]
    fn test_compliance_score_capped_at_100() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.compliance_score <= dec!(100));
    }

    #[test]
    fn test_compliance_score_minimum_zero() {
        // Even worst case should not go below 0
        let mut input = base_input();
        input.has_giin = false;
        input.crs_participating = false;
        input.crs_jurisdictions = vec![];
        input.account_types = vec![];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.compliance_score >= Decimal::ZERO);
    }

    // ---------------------------------------------------------------
    // Withholding Calculation Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_withholding_exposure_zero_when_compliant() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.withholding_exposure_usd, Decimal::ZERO);
    }

    #[test]
    fn test_withholding_exposure_nonzero_when_non_compliant() {
        let mut input = base_input();
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.withholding_exposure_usd > Decimal::ZERO);
    }

    #[test]
    fn test_withholding_exposure_proportional_to_indicia() {
        let mut input = base_input();
        input.has_giin = false;
        input.us_indicia_found = 10;
        input.account_count = 100;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // 10/100 = 10% of accounts, 30% rate, $100M balance
        // Exposure = 100M * 0.30 * 0.10 = $3,000,000
        let expected = dec!(100_000_000) * dec!(0.30) * dec!(0.10);
        assert_eq!(result.withholding_exposure_usd, expected);
    }

    #[test]
    fn test_withholding_exposure_capped_at_full_balance() {
        let mut input = base_input();
        input.has_giin = false;
        input.us_indicia_found = 200; // More indicia than accounts
        input.account_count = 100;
        input.aggregate_balance_usd = dec!(1_000_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // Proportion capped at 1.0
        let max_exposure = dec!(1_000_000) * dec!(0.30);
        assert_eq!(result.withholding_exposure_usd, max_exposure);
    }

    #[test]
    fn test_withholding_exposure_zero_balance() {
        let mut input = base_input();
        input.has_giin = false;
        input.aggregate_balance_usd = Decimal::ZERO;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.withholding_exposure_usd, Decimal::ZERO);
    }

    #[test]
    fn test_withholding_exposure_zero_indicia() {
        let mut input = base_input();
        input.has_giin = false;
        input.us_indicia_found = 0;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.withholding_exposure_usd, Decimal::ZERO);
    }

    #[test]
    fn test_withholding_exposure_zero_accounts() {
        let mut input = base_input();
        input.has_giin = false;
        input.account_count = 0;
        input.us_indicia_found = 5;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.withholding_exposure_usd, Decimal::ZERO);
    }

    // ---------------------------------------------------------------
    // Risk Level Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_risk_level_low_for_compliant() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.risk_level, RiskLevel::Low);
    }

    #[test]
    fn test_risk_level_critical_non_iga_no_giin() {
        let mut input = base_input();
        input.iga_model = IgaModel::NonIGA;
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.risk_level, RiskLevel::Critical);
    }

    #[test]
    fn test_risk_level_escalated_for_many_indicia_no_giin() {
        let mut input = base_input();
        input.has_giin = false;
        input.us_indicia_found = 15;
        input.iga_model = IgaModel::Model1;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // Should be escalated from base level
        assert!(
            result.risk_level == RiskLevel::High || result.risk_level == RiskLevel::Critical,
            "Risk should be escalated for many indicia without GIIN, got {:?}",
            result.risk_level
        );
    }

    #[test]
    fn test_risk_level_medium_moderate_compliance() {
        let mut input = base_input();
        input.has_giin = false;
        input.iga_model = IgaModel::Model1; // partial GIIN credit
        input.us_indicia_found = 3;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // Should be Medium or High (not Low, not Critical for Model1)
        assert!(
            result.risk_level == RiskLevel::Medium || result.risk_level == RiskLevel::High,
            "Expected Medium or High risk, got {:?}",
            result.risk_level
        );
    }

    // ---------------------------------------------------------------
    // Missing GIIN Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_missing_giin_remediation_item() {
        let mut input = base_input();
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.remediation_items.iter().any(|r| r.contains("GIIN")));
    }

    #[test]
    fn test_missing_giin_warning() {
        let mut input = base_input();
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .warnings
            .iter()
            .any(|w| w.contains("GIIN") || w.contains("withholding")));
    }

    #[test]
    fn test_missing_giin_withholding_risk_30pct() {
        let mut input = base_input();
        input.has_giin = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert_eq!(result.fatca_status.withholding_risk_pct, dec!(0.30));
    }

    // ---------------------------------------------------------------
    // Account Type Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_cash_value_insurance_obligation() {
        let mut input = base_input();
        input.account_types = vec![AccountType::CashValueInsurance];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("Cash value insurance")));
    }

    #[test]
    fn test_equity_debt_interest_obligation() {
        let mut input = base_input();
        input.account_types = vec![AccountType::EquityInterest];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("investment entity classification")));
    }

    #[test]
    fn test_depository_custodial_no_special_obligations() {
        let mut input = base_input();
        input.account_types = vec![AccountType::Depository, AccountType::Custodial];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // Should not trigger cash value or equity/debt obligations
        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("Cash value insurance")));
        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("investment entity classification")));
    }

    #[test]
    fn test_all_account_types_combined() {
        let mut input = base_input();
        input.account_types = vec![
            AccountType::Depository,
            AccountType::Custodial,
            AccountType::EquityInterest,
            AccountType::DebtInterest,
            AccountType::CashValueInsurance,
        ];

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("Cash value insurance")));
        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("investment entity classification")));
    }

    // ---------------------------------------------------------------
    // Threshold Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_balance_above_entity_threshold() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(300_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("entity threshold")));
    }

    #[test]
    fn test_balance_above_individual_threshold_below_entity() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(75_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("individual threshold")));
    }

    #[test]
    fn test_balance_below_individual_threshold() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(30_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // Should NOT have threshold-related obligation
        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("threshold")));
    }

    #[test]
    fn test_balance_exactly_at_individual_threshold() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(50_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // $50k is not > $50k
        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("threshold")));
    }

    #[test]
    fn test_balance_exactly_at_entity_threshold() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(250_000);

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        // $250k is not > $250k; should only trigger individual threshold
        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("individual threshold")));
        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("entity threshold")));
    }

    // ---------------------------------------------------------------
    // Reporting Deadline Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_model1_deadline_sept_30() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .reporting_deadlines
            .iter()
            .any(|d| d.framework.contains("Model 1")
                && d.deadline_description.contains("September 30")));
    }

    #[test]
    fn test_model2_deadline_march_31() {
        let mut input = base_input();
        input.iga_model = IgaModel::Model2;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.reporting_deadlines.iter().any(
            |d| d.framework.contains("Model 2") && d.deadline_description.contains("March 31")
        ));
    }

    #[test]
    fn test_non_iga_deadline_march_31() {
        let mut input = base_input();
        input.iga_model = IgaModel::NonIGA;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result.reporting_deadlines.iter().any(
            |d| d.framework.contains("Non-IGA") && d.deadline_description.contains("March 31")
        ));
    }

    #[test]
    fn test_crs_deadline_generated() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .reporting_deadlines
            .iter()
            .any(|d| d.framework == "CRS"));
    }

    #[test]
    fn test_no_crs_deadline_when_not_participating() {
        let mut input = base_input();
        input.crs_participating = false;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(!result
            .reporting_deadlines
            .iter()
            .any(|d| d.framework == "CRS"));
    }

    #[test]
    fn test_deadline_reporting_year_matches_input() {
        let mut input = base_input();
        input.reporting_year = 2024;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        for deadline in &result.reporting_deadlines {
            assert_eq!(deadline.reporting_year, 2024);
        }
    }

    // ---------------------------------------------------------------
    // Validation Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_validation_empty_institution_name() {
        let mut input = base_input();
        input.institution_name = "".into();

        let result = analyze_fatca_crs_reporting(&input);
        assert!(result.is_err());
        match result.unwrap_err() {
            CorpFinanceError::InvalidInput { field, .. } => {
                assert_eq!(field, "institution_name");
            }
            other => panic!("Expected InvalidInput, got {:?}", other),
        }
    }

    #[test]
    fn test_validation_empty_jurisdiction() {
        let mut input = base_input();
        input.jurisdiction = "  ".into();

        let result = analyze_fatca_crs_reporting(&input);
        assert!(result.is_err());
        match result.unwrap_err() {
            CorpFinanceError::InvalidInput { field, .. } => {
                assert_eq!(field, "jurisdiction");
            }
            other => panic!("Expected InvalidInput, got {:?}", other),
        }
    }

    #[test]
    fn test_validation_negative_balance() {
        let mut input = base_input();
        input.aggregate_balance_usd = dec!(-1);

        let result = analyze_fatca_crs_reporting(&input);
        assert!(result.is_err());
        match result.unwrap_err() {
            CorpFinanceError::InvalidInput { field, .. } => {
                assert_eq!(field, "aggregate_balance_usd");
            }
            other => panic!("Expected InvalidInput, got {:?}", other),
        }
    }

    #[test]
    fn test_validation_reporting_year_too_low() {
        let mut input = base_input();
        input.reporting_year = 2005;

        let result = analyze_fatca_crs_reporting(&input);
        assert!(result.is_err());
    }

    #[test]
    fn test_validation_reporting_year_too_high() {
        let mut input = base_input();
        input.reporting_year = 2200;

        let result = analyze_fatca_crs_reporting(&input);
        assert!(result.is_err());
    }

    // ---------------------------------------------------------------
    // Output Structure Tests
    // ---------------------------------------------------------------

    #[test]
    fn test_methodology_populated() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(!result.methodology.is_empty());
        assert!(result.methodology.contains("FATCA"));
        assert!(result.methodology.contains("CRS"));
    }

    #[test]
    fn test_assumptions_populated() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(!result.assumptions.is_empty());
        assert!(result.assumptions.iter().any(|a| a.contains("30%")));
    }

    #[test]
    fn test_withholding_warning_when_exposure() {
        let mut input = base_input();
        input.has_giin = false;
        input.us_indicia_found = 10;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .warnings
            .iter()
            .any(|w| w.contains("withholding exposure")));
    }

    #[test]
    fn test_us_indicia_obligation_generated() {
        let mut input = base_input();
        input.us_indicia_found = 8;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("8 US indicia")));
    }

    #[test]
    fn test_zero_indicia_no_indicia_obligation() {
        let mut input = base_input();
        input.us_indicia_found = 0;

        let result = analyze_fatca_crs_reporting(&input).unwrap();

        assert!(!result
            .fatca_status
            .reporting_obligations
            .iter()
            .any(|o| o.contains("US indicia found")));
    }

    #[test]
    fn test_serialization_roundtrip() {
        let input = base_input();
        let result = analyze_fatca_crs_reporting(&input).unwrap();

        let json = serde_json::to_string(&result).unwrap();
        let deserialized: FatcaCrsReportingOutput = serde_json::from_str(&json).unwrap();

        assert_eq!(deserialized.compliance_score, result.compliance_score);
        assert_eq!(
            deserialized.withholding_exposure_usd,
            result.withholding_exposure_usd
        );
    }
}