@utilitywarehouse/hearth-react 0.28.7 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/README.md +34 -20
  2. package/SKILL.md +355 -0
  3. package/dist/{chunk-TLCA3FQZ.js → chunk-ABES5BZY.js} +2 -2
  4. package/dist/{chunk-OHPQ5IRM.cjs → chunk-Y2CHQFKQ.cjs} +2 -2
  5. package/dist/{chunk-OHPQ5IRM.cjs.map → chunk-Y2CHQFKQ.cjs.map} +1 -1
  6. package/dist/components/CardAccordion/CardAccordion.context.d.ts.map +1 -1
  7. package/dist/components/ExpandableCard/ExpandableCard.cjs +1 -1
  8. package/dist/components/ExpandableCard/ExpandableCard.js +1 -1
  9. package/dist/components/ProgressBar/ProgressBar.cjs +1 -1
  10. package/dist/components/ProgressBar/ProgressBar.js +1 -1
  11. package/dist/helpers/get-classname-styles.d.ts.map +1 -1
  12. package/dist/helpers/logger.d.ts.map +1 -1
  13. package/dist/helpers/merge-ids.d.ts.map +1 -1
  14. package/dist/hooks/use-ids.d.ts.map +1 -1
  15. package/dist/index.cjs +1 -1
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.js +1 -1
  18. package/package.json +14 -10
  19. package/public/llms/components/accordion.md +321 -0
  20. package/public/llms/components/alert.md +217 -0
  21. package/public/llms/components/avatar.md +112 -0
  22. package/public/llms/components/badge.md +158 -0
  23. package/public/llms/components/body-text.md +200 -0
  24. package/public/llms/components/box.md +148 -0
  25. package/public/llms/components/breadcrumbs.md +97 -0
  26. package/public/llms/components/button.md +595 -0
  27. package/public/llms/components/card-accordion.md +277 -0
  28. package/public/llms/components/card.md +985 -0
  29. package/public/llms/components/checkbox-group.md +193 -0
  30. package/public/llms/components/checkbox-tile.md +116 -0
  31. package/public/llms/components/checkbox.md +108 -0
  32. package/public/llms/components/combobox.md +360 -0
  33. package/public/llms/components/container.md +162 -0
  34. package/public/llms/components/currency-input.md +85 -0
  35. package/public/llms/components/date-input.md +90 -0
  36. package/public/llms/components/date-picker.md +159 -0
  37. package/public/llms/components/description-list.md +149 -0
  38. package/public/llms/components/detail-text.md +89 -0
  39. package/public/llms/components/divider.md +88 -0
  40. package/public/llms/components/em.md +43 -0
  41. package/public/llms/components/expandable-card.md +231 -0
  42. package/public/llms/components/flex.md +197 -0
  43. package/public/llms/components/grid.md +244 -0
  44. package/public/llms/components/heading.md +65 -0
  45. package/public/llms/components/helper-text.md +27 -0
  46. package/public/llms/components/highlight-banner.md +94 -0
  47. package/public/llms/components/icon-button.md +516 -0
  48. package/public/llms/components/icon-container.md +247 -0
  49. package/public/llms/components/inline-link.md +190 -0
  50. package/public/llms/components/label.md +28 -0
  51. package/public/llms/components/link.md +236 -0
  52. package/public/llms/components/list.md +715 -0
  53. package/public/llms/components/menu.md +270 -0
  54. package/public/llms/components/modal.md +328 -0
  55. package/public/llms/components/pagination.md +138 -0
  56. package/public/llms/components/password-input.md +93 -0
  57. package/public/llms/components/progress-bar.md +139 -0
  58. package/public/llms/components/progress-stepper.md +147 -0
  59. package/public/llms/components/radio-group.md +487 -0
  60. package/public/llms/components/search-input.md +132 -0
  61. package/public/llms/components/section-header.md +82 -0
  62. package/public/llms/components/select.md +148 -0
  63. package/public/llms/components/skeleton.md +282 -0
  64. package/public/llms/components/spinner.md +59 -0
  65. package/public/llms/components/strong.md +49 -0
  66. package/public/llms/components/switch.md +106 -0
  67. package/public/llms/components/table.md +230 -0
  68. package/public/llms/components/tabs.md +320 -0
  69. package/public/llms/components/text-area.md +141 -0
  70. package/public/llms/components/text-input.md +228 -0
  71. package/public/llms/components/toast.md +323 -0
  72. package/public/llms/components/toggle-button-card.md +513 -0
  73. package/public/llms/components/tooltip.md +188 -0
  74. package/public/llms/components/unstyled-icon-button.md +175 -0
  75. package/public/llms/components/validation-text.md +29 -0
  76. package/public/llms/components/verification-input.md +96 -0
  77. package/public/llms/docs/changelog.md +1430 -0
  78. package/public/llms/docs/common-props/align-self.md +90 -0
  79. package/public/llms/docs/common-props/border.md +308 -0
  80. package/public/llms/docs/common-props/colour.md +221 -0
  81. package/public/llms/docs/common-props/flex-items.md +91 -0
  82. package/public/llms/docs/common-props/gap.md +111 -0
  83. package/public/llms/docs/common-props/grid-items.md +96 -0
  84. package/public/llms/docs/common-props/margin.md +105 -0
  85. package/public/llms/docs/common-props/opacity.md +100 -0
  86. package/public/llms/docs/common-props/order.md +90 -0
  87. package/public/llms/docs/common-props/overflow.md +89 -0
  88. package/public/llms/docs/common-props/padding.md +102 -0
  89. package/public/llms/docs/common-props/position.md +92 -0
  90. package/public/llms/docs/common-props/size.md +93 -0
  91. package/public/llms/docs/common-props/spacing.md +97 -0
  92. package/public/llms/docs/common-props/text.md +35 -0
  93. package/public/llms/docs/common-props/z-index.md +88 -0
  94. package/public/llms/docs/design-tokens.md +72 -0
  95. package/public/llms/docs/getting-started.md +117 -0
  96. package/public/llms/docs/layout.md +135 -0
  97. package/public/llms/docs/migrating.md +302 -0
  98. package/public/llms/docs/responsive-design/breakpoints.md +119 -0
  99. package/public/llms/docs/responsive-design/media-queries.md +89 -0
  100. package/public/llms/docs/responsive-design/responsive-props.md +37 -0
  101. package/public/llms.txt +97 -0
  102. package/scripts/init-ai.js +142 -0
  103. package/styles.css +1 -1
  104. /package/dist/{chunk-TLCA3FQZ.js.map → chunk-ABES5BZY.js.map} +0 -0
@@ -0,0 +1,142 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * init-ai.js
5
+ * Adds the @utilitywarehouse/hearth-react AI skill reference to the
6
+ * project's AI assistant config file.
7
+ *
8
+ * Usage: npx @utilitywarehouse/hearth-react init-ai
9
+ */
10
+
11
+ const fs = require('fs');
12
+ const path = require('path');
13
+ const PACKAGE_NAME = '@utilitywarehouse/hearth-react';
14
+ const SKILL_PATH = `node_modules/${PACKAGE_NAME}/SKILL.md`;
15
+
16
+ // Config files for each tool, in detection priority order
17
+ const AI_TOOLS = [
18
+ {
19
+ name: 'Claude Code',
20
+ files: ['CLAUDE.md'],
21
+ line: `@${SKILL_PATH}`,
22
+ supportsAtImport: true,
23
+ },
24
+ {
25
+ name: 'Cursor',
26
+ files: ['.cursorrules'],
27
+ line: `@${SKILL_PATH}`,
28
+ supportsAtImport: true,
29
+ },
30
+ {
31
+ name: 'Windsurf',
32
+ files: ['.windsurfrules'],
33
+ line: `@${SKILL_PATH}`,
34
+ supportsAtImport: true,
35
+ },
36
+ {
37
+ name: 'Cline / Roo',
38
+ files: ['.clinerules'],
39
+ line: `@${SKILL_PATH}`,
40
+ supportsAtImport: true,
41
+ },
42
+ {
43
+ name: 'Codex / OpenAI agents',
44
+ files: ['AGENTS.md'],
45
+ line: `See ${SKILL_PATH} for ${PACKAGE_NAME} component usage guidelines.`,
46
+ supportsAtImport: false,
47
+ },
48
+ {
49
+ name: 'GitHub Copilot',
50
+ files: ['.github/copilot-instructions.md'],
51
+ line: `See ${SKILL_PATH} for ${PACKAGE_NAME} component usage guidelines.`,
52
+ supportsAtImport: false,
53
+ },
54
+ ];
55
+
56
+ const COMMENT = `# ${PACKAGE_NAME} — AI skill for component library usage guidance\n# Added by: npx ${PACKAGE_NAME} init-ai`;
57
+
58
+ function findProjectRoot() {
59
+ let dir = process.cwd();
60
+ while (dir !== path.parse(dir).root) {
61
+ if (fs.existsSync(path.join(dir, 'package.json'))) return dir;
62
+ dir = path.dirname(dir);
63
+ }
64
+ return process.cwd();
65
+ }
66
+
67
+ function alreadyAdded(content, line) {
68
+ return content.includes(line.trim());
69
+ }
70
+
71
+ function appendToFile(filePath, line) {
72
+ const dir = path.dirname(filePath);
73
+ if (!fs.existsSync(dir)) {
74
+ fs.mkdirSync(dir, { recursive: true });
75
+ }
76
+
77
+ let content = '';
78
+ let existed = false;
79
+ if (fs.existsSync(filePath)) {
80
+ content = fs.readFileSync(filePath, 'utf8');
81
+ existed = true;
82
+ }
83
+
84
+ if (alreadyAdded(content, line)) {
85
+ return { existed, alreadyPresent: true };
86
+ }
87
+
88
+ const separator = content.length > 0 && !content.endsWith('\n') ? '\n' : '';
89
+ fs.appendFileSync(filePath, `${separator}\n${COMMENT}\n${line}\n`);
90
+ return { existed, alreadyPresent: false };
91
+ }
92
+
93
+ function detectAndUpdate(projectRoot) {
94
+ const results = [];
95
+ for (const tool of AI_TOOLS) {
96
+ for (const file of tool.files) {
97
+ const filePath = path.join(projectRoot, file);
98
+ if (fs.existsSync(filePath)) {
99
+ const { alreadyPresent } = appendToFile(filePath, tool.line);
100
+ results.push({ tool: tool.name, file, alreadyPresent, created: false });
101
+ }
102
+ }
103
+ }
104
+ return results;
105
+ }
106
+
107
+ function promptCreate(projectRoot) {
108
+ const readline = require('readline');
109
+ const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
110
+ rl.question('\nNo AI assistant config file detected. Create CLAUDE.md? (Y/n) ', answer => {
111
+ rl.close();
112
+ if (answer.trim().toLowerCase() !== 'n') {
113
+ const tool = AI_TOOLS.find(t => t.name === 'Claude Code');
114
+ const filePath = path.join(projectRoot, 'CLAUDE.md');
115
+ appendToFile(filePath, tool.line);
116
+ console.log(`\n✅ Created CLAUDE.md with ${PACKAGE_NAME} skill reference.`);
117
+ } else {
118
+ console.log('\nSkipped. You can add the skill manually — see the README for instructions.');
119
+ }
120
+ });
121
+ }
122
+
123
+ // ── Main ──────────────────────────────────────────────────────────────────────
124
+
125
+ const projectRoot = findProjectRoot();
126
+
127
+ console.log(`\n🔍 Scanning for AI assistant config files in ${projectRoot}...\n`);
128
+
129
+ const results = detectAndUpdate(projectRoot);
130
+
131
+ if (results.length === 0) {
132
+ promptCreate(projectRoot);
133
+ } else {
134
+ for (const r of results) {
135
+ if (r.alreadyPresent) {
136
+ console.log(`⏭ ${r.tool} (${r.file}) — skill already present, skipped`);
137
+ } else {
138
+ console.log(`✅ ${r.tool} (${r.file}) — skill reference added`);
139
+ }
140
+ }
141
+ console.log(`\nDone! Your AI assistant will now use the ${PACKAGE_NAME} skill.\n`);
142
+ }
package/styles.css CHANGED
@@ -1,4 +1,4 @@
1
- @layer reset{*,:after,:before{box-sizing:border-box;margin:0;padding:0}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--h-text-primary);font-family:var(--h-font-family-body),Helvetica,Arial,sans-serif;line-height:var(--h-line-height-500);min-height:100vh;text-rendering:optimizeSpeed}:where(html){-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}:where(h1,h2,h3,h4){font-family:var(--h-font-family-heading),Georgia,serif;text-rendering:optimizeLegibility}:where(a:not([class])){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}:where(ul,ol){padding-inline-start:var(--h-space-400)}:where(ul[role=list],ol[role=list]){list-style:none;padding:0}:where(img,picture,video){display:block;max-width:100%}:where(audio,iframe,img,svg,video){max-block-size:100%;max-inline-size:100%}:where(svg){overflow:visible}:where(fieldset){border:none;margin:0;min-inline-size:0;padding:0}:where(label):has(+:where(textarea,input,select)){display:block}:where(input,button,textarea,select){color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;word-spacing:inherit}:where(button,a){font-family:var(--h-font-family-body),Courier New,Courier,monospace}:where(input:is([type=checkbox],[type=radio]),button,select,a):not([aria-disabled=true]){cursor:pointer}:where(p,h1,h2,h3,h4){overflow-wrap:break-word}:where(h1,h2,h3,h4){text-wrap:balance}:where(:target){scroll-margin-block:5ex}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}@media (prefers-reduced-motion:reduce){:where(html:focus-within){scroll-behavior:auto}*,:after,:before{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}:where(.visually-hidden:not(:focus-within,:active)){border:0!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;position:absolute!important;-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;white-space:nowrap!important;width:1px!important}}:root{--h-border-radius-full:9999px;--h-border-radius-lg:12px;--h-border-radius-md:8px;--h-border-radius-none:0px;--h-border-radius-sm:6px;--h-border-radius-xl:16px;--h-border-radius-xs:4px;--h-border-width-1:1px;--h-border-width-2:2px;--h-color-blue-0:#f8fbff;--h-color-blue-50:#eef7ff;--h-color-blue-100:#d9ecff;--h-color-blue-200:#bcddff;--h-color-blue-300:#93c1ff;--h-color-blue-400:#6bb0ff;--h-color-blue-500:#41a0ff;--h-color-blue-600:#2786f1;--h-color-blue-700:#1c6cd4;--h-color-blue-800:#2354a4;--h-color-blue-900:#0b3375;--h-color-blue-950:#042455;--h-color-blue-1000:#001433;--h-color-broadband-green-0:#f8faf6;--h-color-broadband-green-50:#f2f6ed;--h-color-broadband-green-100:#e7efdc;--h-color-broadband-green-200:#d2e6b0;--h-color-broadband-green-300:#8cba3b;--h-color-broadband-green-400:#7aa031;--h-color-broadband-green-500:#6e932b;--h-color-broadband-green-600:#64862a;--h-color-broadband-green-700:#5a7926;--h-color-broadband-green-800:#506c21;--h-color-broadband-green-900:#4f6b20;--h-color-broadband-green-950:#35421c;--h-color-broadband-green-1000:#252d16;--h-color-cashback-lilac-0:#f7f5f8;--h-color-cashback-lilac-50:#f5f2f6;--h-color-cashback-lilac-100:#ebdef5;--h-color-cashback-lilac-200:#e4caf5;--h-color-cashback-lilac-300:#dfbdf5;--h-color-cashback-lilac-400:#ce9cf0;--h-color-cashback-lilac-500:#be7aeb;--h-color-cashback-lilac-600:#9f3be2;--h-color-cashback-lilac-700:#8b2bc9;--h-color-cashback-lilac-800:#7821b8;--h-color-cashback-lilac-900:#7429b5;--h-color-cashback-lilac-950:#522270;--h-color-cashback-lilac-1000:#3a1f52;--h-color-energy-blue-0:#f7f9fa;--h-color-energy-blue-50:#edf4f6;--h-color-energy-blue-100:#d4e5e9;--h-color-energy-blue-200:#bddee4;--h-color-energy-blue-300:#6db5c3;--h-color-energy-blue-400:#579daa;--h-color-energy-blue-500:#4c8a97;--h-color-energy-blue-600:#367683;--h-color-energy-blue-700:#326e7a;--h-color-energy-blue-800:#2d6571;--h-color-energy-blue-900:#2c6370;--h-color-energy-blue-950:#254348;--h-color-energy-blue-1000:#1a2f35;--h-color-green-0:#f8fdf9;--h-color-green-50:#e7f9f0;--h-color-green-100:#c5edda;--h-color-green-200:#a2e2c3;--h-color-green-300:#74d6a0;--h-color-green-400:#58ca93;--h-color-green-500:#36bf7d;--h-color-green-600:#19a660;--h-color-green-700:#0f834a;--h-color-green-800:#04663a;--h-color-green-900:#074b2a;--h-color-green-950:#033d21;--h-color-green-1000:#002e18;--h-color-grey-0:#fff;--h-color-grey-50:#f7f7f7;--h-color-grey-100:#ebebeb;--h-color-grey-200:#d3d3d3;--h-color-grey-300:#b2afae;--h-color-grey-400:#919191;--h-color-grey-500:#888;--h-color-grey-600:#5b5b5b;--h-color-grey-700:#4c4c4c;--h-color-grey-800:#3f3f3f;--h-color-grey-900:#3a3837;--h-color-grey-925:#2f2d2d;--h-color-grey-950:#232323;--h-color-grey-975:#191919;--h-color-grey-1000:#101010;--h-color-insurance-orange-0:#fefcf9;--h-color-insurance-orange-50:#fdf5eb;--h-color-insurance-orange-100:#fcecd6;--h-color-insurance-orange-200:#ffcda0;--h-color-insurance-orange-300:#ffb46d;--h-color-insurance-orange-400:#ff7b00;--h-color-insurance-orange-500:#f06b00;--h-color-insurance-orange-600:#e26400;--h-color-insurance-orange-700:#cb5b00;--h-color-insurance-orange-800:#9b4c0e;--h-color-insurance-orange-900:#7f4518;--h-color-insurance-orange-950:#5a3213;--h-color-insurance-orange-1000:#3f2616;--h-color-mobile-rose-0:#fffaf9;--h-color-mobile-rose-50:#fdf2f6;--h-color-mobile-rose-100:#faeaf2;--h-color-mobile-rose-200:#fad0e9;--h-color-mobile-rose-300:#f49fd2;--h-color-mobile-rose-400:#ee6dbb;--h-color-mobile-rose-500:#e652aa;--h-color-mobile-rose-600:#de379a;--h-color-mobile-rose-700:#d61c89;--h-color-mobile-rose-800:#a7266d;--h-color-mobile-rose-900:#8a3260;--h-color-mobile-rose-950:#601f42;--h-color-mobile-rose-1000:#421a32;--h-color-orange-0:#fffdf8;--h-color-orange-50:#fff5ed;--h-color-orange-100:#ffe6d4;--h-color-orange-200:#ffcca8;--h-color-orange-300:#ffab70;--h-color-orange-400:#ff9639;--h-color-orange-500:#ff8010;--h-color-orange-600:#f56e00;--h-color-orange-700:#cf5d00;--h-color-orange-750:#be5400;--h-color-orange-800:#ad4b00;--h-color-orange-900:#893900;--h-color-orange-950:#6b2d00;--h-color-orange-1000:#4a1f00;--h-color-piggy-pink-0:#faf5fa;--h-color-piggy-pink-50:#f6f1f7;--h-color-piggy-pink-100:#f9eafa;--h-color-piggy-pink-200:#f9ceff;--h-color-piggy-pink-300:#f295ff;--h-color-piggy-pink-400:#ed66ff;--h-color-piggy-pink-500:#d052c8;--h-color-piggy-pink-600:#bc48b4;--h-color-piggy-pink-700:#a53fa5;--h-color-piggy-pink-800:#8f358f;--h-color-piggy-pink-900:#7a1f7e;--h-color-piggy-pink-950:#5d2167;--h-color-piggy-pink-1000:#3f1448;--h-color-purple-0:#f7f6f9;--h-color-purple-50:#eeebf4;--h-color-purple-100:#ddd5eb;--h-color-purple-200:#c6b5e2;--h-color-purple-300:#af90de;--h-color-purple-400:#996cda;--h-color-purple-500:#8851d6;--h-color-purple-600:#8149ce;--h-color-purple-700:#7a42c8;--h-color-purple-800:#5c2ca9;--h-color-purple-900:#442484;--h-color-purple-950:#331c68;--h-color-purple-1000:#26164f;--h-color-red-0:#fff6f5;--h-color-red-50:#fff3f1;--h-color-red-100:#ffe3df;--h-color-red-200:#ffccc5;--h-color-red-300:#ffa89d;--h-color-red-400:#ff7964;--h-color-red-500:#ff634a;--h-color-red-600:#f4412a;--h-color-red-700:#de2612;--h-color-red-800:#a4281e;--h-color-red-900:#6b1f1a;--h-color-red-950:#521a16;--h-color-red-1000:#3b1512;--h-color-warm-white-0:#fdfcfa;--h-color-warm-white-50:#fcfbf2;--h-color-warm-white-100:#f7f6eb;--h-color-warm-white-200:#f1efe4;--h-color-warm-white-300:#d4d2c0;--h-color-warm-white-400:#bfb9a9;--h-color-warm-white-500:#a99f8b;--h-color-warm-white-600:#89816e;--h-color-warm-white-700:#6a6354;--h-color-warm-white-800:#4c473d;--h-color-warm-white-900:#30302c;--h-color-warm-white-950:#282825;--h-color-warm-white-975:#20201d;--h-color-warm-white-1000:#191917;--h-color-yellow-0:#fffef9;--h-color-yellow-50:#fff8ea;--h-color-yellow-100:#ffe8b8;--h-color-yellow-200:#ffd885;--h-color-yellow-300:#ffc852;--h-color-yellow-400:#ffb921;--h-color-yellow-500:#eba400;--h-color-yellow-600:#d1950b;--h-color-yellow-700:#b78715;--h-color-yellow-800:#9c7820;--h-color-yellow-900:#82692b;--h-color-yellow-950:#756230;--h-color-yellow-1000:#4c401f;--h-accordion-gap:var(--h-space-150);--h-accordion-heading-gap:var(--h-space-25);--h-accordion-item-content-gap:var(--h-space-200);--h-accordion-item-content-padding-bottom:var(--h-space-200);--h-accordion-item-content-padding-horizontal:var(--h-space-50);--h-accordion-item-content-padding-top:var(--h-space-50);--h-accordion-item-gap:0;--h-accordion-item-heading-gap:var(--h-space-200);--h-accordion-item-heading-padding-horizontal:var(--h-space-50);--h-accordion-item-heading-padding-vertical:var(--h-space-200);--h-accordion-max-width:680px;--h-accordion-min-width:288px;--h-accordion-padding:0;--h-alert-border-radius:var(--h-border-radius-md);--h-alert-border-width:var(--h-border-width-2);--h-alert-content-gap:var(--h-space-50);--h-alert-gap:var(--h-space-100);--h-alert-icon-button-unstyled-foreground-color:var(--h-color-grey-1000);--h-alert-icon-button-unstyled-foreground-color-active:var(--h-color-grey-800);--h-alert-icon-button-unstyled-foreground-color-hover:var(--h-color-grey-900);--h-alert-link-color:var(--h-color-grey-1000);--h-alert-link-color-active:var(--h-color-grey-800);--h-alert-link-color-hover:var(--h-color-grey-900);--h-alert-padding:var(--h-space-175);--h-avatar-image-border-width:var(--h-border-width-1);--h-avatar-md-border-radius:var(--h-border-radius-md);--h-avatar-md-height:var(--h-space-600)px;--h-avatar-md-width:var(--h-space-600)px;--h-avatar-sm-border-radius:var(--h-border-radius-sm);--h-avatar-sm-height:var(--h-space-400)px;--h-avatar-sm-width:var(--h-space-400)px;--h-badge-border-radius:var(--h-border-radius-xs);--h-badge-flat-base-border-bottom-left-radius:0;--h-badge-flat-base-border-bottom-right-radius:0;--h-badge-gap:var(--h-space-50);--h-badge-md-height:var(--h-space-400)px;--h-badge-md-padding-vertical:var(--h-space-50);--h-badge-outline-border-width:var(--h-border-width-1);--h-badge-padding-horizontal:var(--h-space-75);--h-badge-sm-height:var(--h-space-300)px;--h-badge-sm-padding-vertical:var(--h-space-25);--h-banner-default-content-gap:var(--h-space-150);--h-banner-default-content-text-gap:var(--h-space-100);--h-banner-default-gap:var(--h-space-200);--h-banner-default-horizontal-illustration-width:100;--h-banner-default-horizontal-image-max-width:240;--h-banner-default-horizontal-image-min-width:160;--h-banner-default-horizontal-max-width:680px;--h-banner-default-horizontal-min-width:240px;--h-banner-default-image-height:160;--h-banner-default-padding:var(--h-space-200);--h-banner-default-vertical-max-width:504px;--h-banner-default-vertical-min-width:240px;--h-banner-highlight-content-gap:var(--h-space-150);--h-banner-highlight-gap:0;--h-banner-highlight-padding:var(--h-space-200);--h-banner-image-container-border-color:var(--h-color-grey-1000);--h-bottom-sheet-border-top-left-radius:var(--h-border-radius-xl);--h-bottom-sheet-border-top-right-radius:var(--h-border-radius-xl);--h-bottom-sheet-gap:var(--h-space-75);--h-bottom-sheet-handle-background-color:var(--h-color-grey-200);--h-bottom-sheet-handle-border-radius:var(--h-border-radius-sm);--h-bottom-sheet-handle-height:5px;--h-bottom-sheet-handle-width:36px;--h-bottom-sheet-padding:var(--h-space-200);--h-breadcrumb-gap:var(--h-space-100);--h-button-border-radius:var(--h-border-radius-md);--h-button-border-width:var(--h-border-width-2);--h-button-gap:var(--h-space-75);--h-button-md-padding-horizontal:var(--h-space-200);--h-button-md-padding-vertical:var(--h-space-150);--h-button-min-width:30px;--h-button-shadow-color:var(--h-color-grey-1000);--h-button-sm-padding-horizontal:var(--h-space-200);--h-button-sm-padding-vertical:var(--h-space-50);--h-card-border-radius:var(--h-border-radius-xl);--h-card-brand-border-width:var(--h-border-width-2);--h-card-neutral-emphasis-border-width:var(--h-border-width-2);--h-card-neutral-subtle-border-width:var(--h-border-width-1);--h-card-selectable-border-width:var(--h-border-width-1);--h-card-selectable-border-width-selected:var(--h-border-width-2);--h-card-selectable-gap:var(--h-space-200);--h-card-selectable-label-gap:var(--h-space-150);--h-card-accordion-button-group-gap:var(--h-space-150);--h-card-accordion-gap:var(--h-space-300);--h-card-accordion-item-gap:var(--h-space-250);--h-card-action-content-gap:var(--h-space-150);--h-card-action-content-padding-horizontal:var(--h-space-200);--h-card-action-content-padding-vertical:var(--h-space-150);--h-card-content-banner-illustration-lg-width:100px;--h-card-content-banner-illustration-md-width:80px;--h-card-content-banner-illustration-sm-width:60px;--h-card-content-banner-illustration-xl-width:120px;--h-card-content-banner-illustration-xs-width:40px;--h-carousel-control-gap:var(--h-space-100);--h-carousel-control-item-border-width:var(--h-border-width-2);--h-carousel-control-size:var(--h-space-150)px;--h-checkbox-border-radius:var(--h-border-radius-xs);--h-checkbox-border-width:var(--h-border-width-2);--h-checkbox-checked-background-color:var(--h-color-grey-1000);--h-checkbox-checked-icon-color:var(--h-color-warm-white-50);--h-checkbox-gap:var(--h-space-100);--h-checkbox-group-gap:var(--h-space-150);--h-checkbox-group-stack-gap:var(--h-space-250);--h-checkbox-outline-color-active:var(--h-color-warm-white-300);--h-checkbox-outline-color-hover:var(--h-color-warm-white-200);--h-checkbox-outline-width:3px;--h-checkbox-tile-border-radius:var(--h-border-radius-md);--h-checkbox-tile-border-width:var(--h-border-width-1);--h-checkbox-tile-border-width-selected:var(--h-border-width-2);--h-checkbox-tile-gap:var(--h-space-100);--h-checkbox-tile-group-gap:var(--h-space-75);--h-checkbox-tile-group-heading-gap:var(--h-space-25);--h-checkbox-tile-group-stack-gap:var(--h-space-150);--h-checkbox-tile-max-width:680px;--h-checkbox-tile-min-width:80px;--h-checkbox-tile-padding:var(--h-space-150);--h-date-picker-border-radius:var(--h-border-radius-md);--h-date-picker-border-width:var(--h-border-width-1);--h-date-picker-border-width-focused:var(--h-border-width-2);--h-date-picker-calendar-border-radius:var(--h-border-radius-md);--h-date-picker-calendar-border-width:var(--h-border-width-1);--h-date-picker-calendar-column-gap:var(--h-space-50);--h-date-picker-calendar-footer-gap:var(--h-space-100);--h-date-picker-calendar-gap:var(--h-space-200);--h-date-picker-calendar-header-control-gap:var(--h-space-350);--h-date-picker-calendar-header-date-gap:var(--h-space-100);--h-date-picker-calendar-item-border-radius:var(--h-border-radius-md);--h-date-picker-calendar-item-min-width:32px;--h-date-picker-calendar-item-range-background:var(--h-color-grey-50);--h-date-picker-calendar-item-roundel-background-color-inverted:var(--h-color-warm-white-50);--h-date-picker-calendar-item-roundel-height:var(--h-space-75);--h-date-picker-calendar-item-roundel-width:var(--h-space-75);--h-date-picker-calendar-max-width:420px;--h-date-picker-calendar-min-width:320px;--h-date-picker-calendar-padding:var(--h-space-200);--h-date-picker-calendar-row-gap:var(--h-space-25);--h-date-picker-gap:var(--h-space-75);--h-date-picker-gap-container:var(--h-space-50);--h-date-picker-header-control-gap:var(--h-space-350);--h-date-picker-height:var(--h-space-600)px;--h-date-picker-max-width:504px;--h-date-picker-min-width:288px;--h-date-picker-padding-horizontal:var(--h-space-200);--h-date-picker-padding-vertical:var(--h-space-150);--h-description-list-gap:var(--h-space-150);--h-description-list-item-column-gap:var(--h-space-25);--h-description-list-item-gap:var(--h-space-200);--h-description-list-item-row-gap:var(--h-space-100);--h-description-list-item-row-heading-width:180px;--h-description-list-stack-gap:var(--h-space-200);--h-divider-border-width:var(--h-border-width-1);--h-drawer-footer-horizontal-gap:var(--h-space-200);--h-drawer-footer-padding:var(--h-space-300);--h-drawer-footer-vertical-gap:var(--h-space-100);--h-drawer-gap:var(--h-space-250);--h-drawer-heading-gap:var(--h-space-100);--h-drawer-width:360px;--h-expandable-card-gap-horizontal:var(--h-space-150);--h-expandable-card-gap-vertical:var(--h-space-25);--h-expandable-card-group-gap:var(--h-space-150);--h-form-field-gap:var(--h-space-75);--h-form-field-helper-gap:var(--h-space-25);--h-icon-button-border-radius:var(--h-border-radius-md);--h-icon-button-md-height:48px;--h-icon-button-md-padding-horizontal:var(--h-space-150);--h-icon-button-md-padding-vertical:var(--h-space-150);--h-icon-button-md-width:48px;--h-icon-button-sm-height:32px;--h-icon-button-sm-padding-horizontal:var(--h-space-75);--h-icon-button-sm-padding-vertical:var(--h-space-75);--h-icon-button-sm-width:32px;--h-icon-button-unstyled-foreground-color:var(--h-color-grey-1000);--h-icon-button-unstyled-foreground-color-active:var(--h-color-grey-800);--h-icon-button-unstyled-foreground-color-hover:var(--h-color-grey-900);--h-icon-button-unstyled-inverted-foreground-color:var(--h-color-grey-50);--h-icon-button-unstyled-inverted-foreground-color-active:var(--h-color-grey-300);--h-icon-button-unstyled-inverted-foreground-color-hover:var(--h-color-grey-200);--h-icon-button-unstyled-md-height:24px;--h-icon-button-unstyled-md-width:24px;--h-icon-button-unstyled-padding-horizontal:0;--h-icon-button-unstyled-padding-vertical:0;--h-icon-button-unstyled-sm-height:20px;--h-icon-button-unstyled-sm-width:20px;--h-icon-container-lg-border-radius-none:0;--h-icon-container-lg-border-radius-rounded:var(--h-border-radius-md);--h-icon-container-lg-height:var(--h-space-800)px;--h-icon-container-lg-padding:var(--h-space-250);--h-icon-container-lg-width:var(--h-space-800)px;--h-icon-container-md-border-radius-rounded:var(--h-border-radius-md);--h-icon-container-md-height:var(--h-space-600)px;--h-icon-container-md-padding:var(--h-space-150);--h-icon-container-md-width:var(--h-space-600)px;--h-icon-container-sm-border-radius-rounded:var(--h-border-radius-sm);--h-icon-container-sm-height:var(--h-space-400)px;--h-icon-container-sm-padding:var(--h-space-75);--h-icon-container-sm-width:var(--h-space-400)px;--h-illustrations-color-mode:light;--h-inline-link-color:var(--h-color-blue-700);--h-inline-link-color-visited:var(--h-color-purple-700);--h-inline-link-inverted-color:var(--h-color-warm-white-50);--h-inline-link-inverted-color-active:var(--h-color-warm-white-200);--h-inline-link-inverted-color-hover:var(--h-color-warm-white-100);--h-inline-link-inverted-color-visited:var(--h-color-warm-white-200);--h-input-border-radius:var(--h-border-radius-md);--h-input-border-width:var(--h-border-width-1);--h-input-border-width-focused:var(--h-border-width-2);--h-input-currency-gap:var(--h-space-25);--h-input-currency-height:60px;--h-input-date-gap:var(--h-space-100);--h-input-gap:var(--h-space-75);--h-input-heading-gap:var(--h-space-150);--h-input-heading-text-gap:var(--h-space-25);--h-input-height:48px;--h-input-label-gap:var(--h-space-25);--h-input-max-width:504px;--h-input-min-width:120px;--h-input-padding-horizontal:var(--h-space-200);--h-input-padding-vertical:var(--h-space-150);--h-input-stepper-gap:var(--h-space-50);--h-input-text-area-height:96px;--h-input-validation-gap:var(--h-space-25);--h-input-verification-gap:var(--h-space-100);--h-link-color:var(--h-color-grey-1000);--h-link-color-active:var(--h-color-grey-800);--h-link-color-hover:var(--h-color-grey-900);--h-link-gap:var(--h-space-25);--h-link-inverted-color:var(--h-color-warm-white-50);--h-link-inverted-color-active:var(--h-color-warm-white-200);--h-link-inverted-color-hover:var(--h-color-warm-white-100);--h-list-container-emphasis-warm-white-border-radius:var(--h-border-radius-xl);--h-list-container-emphasis-white-border-radius:var(--h-border-radius-xl);--h-list-container-none-border-radius:0;--h-list-container-none-item-padding-horizontal:0;--h-list-container-subtle-warm-white-border-radius:var(--h-border-radius-xl);--h-list-container-subtle-white-border-radius:var(--h-border-radius-xl);--h-list-gap:var(--h-space-150);--h-list-indicator-padding:var(--h-space-100);--h-list-item-content-gap:var(--h-space-25);--h-list-item-functional-border-width:var(--h-border-width-1);--h-list-item-functional-padding:var(--h-space-200);--h-list-item-functional-padding-none:0;--h-list-item-gap:var(--h-space-150);--h-list-item-stylised-border-width:var(--h-border-width-2);--h-list-item-stylised-height:var(--h-space-900)px;--h-list-item-stylised-padding-left:0;--h-list-item-stylised-padding-right:var(--h-space-200);--h-menu-border-width:var(--h-border-width-1);--h-menu-gap:var(--h-space-50);--h-menu-item-border-radius:var(--h-border-radius-xs);--h-menu-item-gap:var(--h-space-75);--h-menu-item-padding:var(--h-space-150);--h-menu-list-gap:var(--h-space-100);--h-menu-max-width:504px;--h-menu-min-width:288px;--h-menu-padding:var(--h-space-50);--h-modal-action-gap:var(--h-space-150);--h-modal-border-radius:var(--h-border-radius-xl);--h-modal-content-gap:var(--h-space-150);--h-modal-content-mobile-padding-bottom:var(--h-space-200);--h-modal-gap:var(--h-space-300);--h-modal-handle-padding-bottom:var(--h-space-200);--h-modal-heading-gap:var(--h-space-300);--h-modal-illustration-padding:var(--h-space-600);--h-modal-padding:var(--h-space-300);--h-navigation-bar-border-radius-none:0;--h-navigation-bar-border-radius-rounded:var(--h-border-radius-xs);--h-navigation-border-bottom:var(--h-color-purple-800);--h-navigation-border-radius:var(--h-border-radius-sm);--h-navigation-desktop-customer-gap:var(--h-space-150);--h-navigation-desktop-height:88px;--h-navigation-desktop-partner-gap:var(--h-space-50);--h-navigation-desktop-partner-header-gap:var(--h-space-300);--h-navigation-desktop-partner-padding:var(--h-space-300);--h-navigation-divider-border-color:var(--h-color-purple-800);--h-navigation-item-customer-container-gap:var(--h-space-50);--h-navigation-item-customer-container-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-container-padding-vertical:var(--h-space-100);--h-navigation-item-customer-mobile-container-padding-horizontal:var(--h-space-100);--h-navigation-item-customer-mobile-container-padding-vertical:var(--h-space-100);--h-navigation-item-customer-mobile-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-mobile-padding-vertical:var(--h-space-300);--h-navigation-item-customer-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-padding-vertical:var(--h-space-300);--h-navigation-item-partner-container-gap:var(--h-space-50);--h-navigation-item-partner-container-padding:var(--h-space-100);--h-navigation-item-partner-padding-horizontal:var(--h-space-200);--h-navigation-item-partner-sub-padding-left:var(--h-space-400);--h-navigation-item-partner-sub-padding-right:var(--h-space-200);--h-navigation-mobile-gap:var(--h-space-150);--h-navigation-mobile-height:64px;--h-navigation-mobile-padding:var(--h-space-200);--h-overlay-background-color:var(--h-color-grey-1000);--h-overlay-opacity:0.75;--h-pagination-gap:var(--h-space-100);--h-pagination-item-gap:var(--h-space-25);--h-pagination-item-height:40px;--h-pagination-item-radius:var(--h-border-radius-md);--h-pagination-item-width:40px;--h-parts-home-indicator-foreground-color:var(--h-color-grey-1000);--h-parts-home-indicator-foreground-color-inverted:var(--h-color-grey-0);--h-parts-modal-stack-background-color:var(--h-color-grey-1000);--h-parts-modal-stack-background-color-card-bottom:var(--h-color-grey-0);--h-parts-modal-stack-background-color-card-top:var(--h-color-grey-100);--h-parts-placeholder-border-color:var(--h-color-grey-1000);--h-parts-roundel-border-radius:var(--h-border-radius-full);--h-parts-roundel-pending-border-width:var(--h-border-width-2);--h-parts-scroll-bar-background-color:var(--h-color-warm-white-300);--h-parts-scroll-bar-border-radius:var(--h-border-radius-full);--h-parts-status-bar-foreground-color:var(--h-color-grey-1000);--h-parts-status-bar-foreground-color-inverted:var(--h-color-grey-0);--h-parts-status-bar-notch:var(--h-color-grey-1000);--h-pill-border-radius:var(--h-border-radius-full);--h-pill-border-width:var(--h-border-width-1);--h-pill-gap:var(--h-space-75);--h-pill-group-gap:var(--h-space-100);--h-pill-height:var(--h-space-600)px;--h-pill-min-width:66px;--h-pill-padding-horizontal:var(--h-space-250);--h-pill-padding-vertical:var(--h-space-150);--h-progress-bar-bar-color:var(--h-color-warm-white-200);--h-progress-bar-circular-md-bar-width:12px;--h-progress-bar-circular-md-gap:0;--h-progress-bar-circular-md-height:140px;--h-progress-bar-circular-md-label-font-family:var(--h-font-family-body);--h-progress-bar-circular-md-label-font-size:var(--h-font-size-300);--h-progress-bar-circular-md-label-font-weight:var(--h-font-weight-regular);--h-progress-bar-circular-md-label-line-height:var(--h-line-height-500);--h-progress-bar-circular-sm-bar-width:8px;--h-progress-bar-circular-sm-height:80px;--h-progress-bar-linear-bar-border-radius:var(--h-border-radius-full);--h-progress-bar-linear-bar-height:12px;--h-progress-bar-linear-gap:var(--h-space-100);--h-progress-bar-linear-label-gap:var(--h-space-100);--h-progress-bar-progress-danger-color:var(--h-color-red-600);--h-progress-bar-progress-default-color:var(--h-color-purple-1000);--h-progress-bar-progress-success-color:var(--h-color-green-600);--h-progress-stepper-bar-complete-background-color:var(--h-color-purple-700);--h-progress-stepper-bar-height:2px;--h-progress-stepper-gap-horizontal:0;--h-progress-stepper-gap-vertical:var(--h-space-50);--h-progress-stepper-indicator-complete-icon-color:var(--h-color-warm-white-50);--h-progress-stepper-indicator-future-border-width:var(--h-border-width-2);--h-progress-stepper-indicator-height:28px;--h-progress-stepper-indicator-width:28px;--h-radio-border-radius:var(--h-border-radius-full);--h-radio-border-width:var(--h-border-width-2);--h-radio-checked-color:var(--h-color-grey-1000);--h-radio-gap:var(--h-space-100);--h-radio-group-gap:var(--h-space-200);--h-radio-group-stack-gap:var(--h-space-250);--h-radio-outline-color-active:var(--h-color-warm-white-300);--h-radio-outline-color-hover:var(--h-color-warm-white-200);--h-radio-outline-width:3px;--h-radio-tile-border-radius:var(--h-border-radius-md);--h-radio-tile-border-width:var(--h-border-width-1);--h-radio-tile-border-width-selected:var(--h-border-width-2);--h-radio-tile-gap:var(--h-space-100);--h-radio-tile-group-gap:var(--h-space-150);--h-radio-tile-group-heading-gap:var(--h-space-25);--h-radio-tile-group-stack-gap:var(--h-space-150);--h-radio-tile-max-width:680px;--h-radio-tile-min-width:80px;--h-radio-tile-padding:var(--h-space-150);--h-rating-border-width:var(--h-border-width-2);--h-rating-gap:var(--h-space-50);--h-section-header-gap:var(--h-space-150);--h-section-header-text-content-gap:var(--h-space-25);--h-segmented-control-border-radius:var(--h-border-radius-full);--h-segmented-control-gap:var(--h-space-75);--h-segmented-control-group-border-radius:var(--h-border-radius-full);--h-segmented-control-group-border-width:var(--h-border-width-1);--h-segmented-control-group-gap:var(--h-space-50);--h-segmented-control-group-height:var(--h-space-600)px;--h-segmented-control-group-padding:var(--h-space-25);--h-segmented-control-height:var(--h-space-500)px;--h-segmented-control-min-width:66px;--h-segmented-control-padding-horizontal:var(--h-space-200);--h-segmented-control-padding-vertical:var(--h-space-100);--h-select-border-radius:var(--h-border-radius-md);--h-select-border-width:var(--h-border-width-1);--h-select-border-width-focused:var(--h-border-width-2);--h-select-dropdown-border-width:var(--h-border-width-1);--h-select-dropdown-gap:var(--h-space-50);--h-select-dropdown-gap-content:var(--h-space-100);--h-select-dropdown-item-border-radius:var(--h-border-radius-xs);--h-select-dropdown-item-gap:var(--h-space-75);--h-select-dropdown-item-padding:var(--h-space-150);--h-select-dropdown-padding:var(--h-space-50);--h-select-gap:var(--h-space-75);--h-select-gap-container:var(--h-space-50);--h-select-height:48px;--h-select-max-width:504px;--h-select-min-width:288px;--h-select-padding-horizontal:var(--h-space-200);--h-select-padding-vertical:var(--h-space-150);--h-select-validation-gap:var(--h-space-25);--h-skeleton-loading-color:var(--h-color-warm-white-200);--h-spinner-default-fill:var(--h-color-purple-700);--h-spinner-lg-size:40px;--h-spinner-lg-stroke-width:3;--h-spinner-md-size:28px;--h-spinner-md-stroke-width:2.5;--h-spinner-padding:var(--h-space-25);--h-spinner-sm-size:20px;--h-spinner-sm-stroke-width:2;--h-spinner-xs-size:16px;--h-spinner-xs-stroke-width:1.5;--h-switch-md-circle-size:28px;--h-switch-md-height:32px;--h-switch-md-width:60px;--h-switch-padding:var(--h-space-25);--h-switch-radius:var(--h-border-radius-full);--h-switch-sm-circle-size:20px;--h-switch-sm-height:24px;--h-switch-sm-width:44px;--h-switch-unchecked-background-color-hover:var(--h-color-grey-500);--h-table-border-radius:var(--h-border-radius-xl);--h-table-cell-border-width:var(--h-border-width-1);--h-table-cell-min-height:48px;--h-table-cell-padding:var(--h-space-150);--h-table-emphasis-border-width:var(--h-border-width-2);--h-table-header-cell-border-width:var(--h-border-width-2);--h-table-header-cell-foregound-color:var(--h-color-grey-1000);--h-table-header-cell-foregound-color-inverted:var(--h-color-grey-0);--h-table-header-cell-gap:var(--h-space-100);--h-table-header-cell-height:56px;--h-table-header-cell-padding-horizontal:var(--h-space-150);--h-table-header-cell-padding-vertical:var(--h-space-200);--h-table-subtle-border-width:var(--h-border-width-1);--h-tabs-divider-border-width:var(--h-border-width-2);--h-tabs-gap:var(--h-space-150);--h-tabs-item-gap:var(--h-space-75);--h-tabs-item-padding-horizontal:var(--h-space-150);--h-tabs-item-padding-vertical:var(--h-space-200);--h-tabs-item-selected-border-bottom-radius:0;--h-tabs-item-selected-border-top-radius:var(--h-border-radius-xs);--h-tabs-lg-height:var(--h-space-800)px;--h-tabs-md-height:var(--h-space-700)px;--h-time-picker-fade:#fff0;--h-time-picker-gap:var(--h-space-75);--h-time-picker-gap-container:var(--h-space-50);--h-time-picker-min-width:288px;--h-time-picker-padding-horizontal:var(--h-space-200);--h-time-picker-padding-vertical:var(--h-space-150);--h-time-picker-time-column-gap:var(--h-space-50);--h-time-picker-time-content-gap:var(--h-space-100);--h-time-picker-time-content-item-gap:var(--h-space-25);--h-time-picker-time-footer-gap:var(--h-space-100);--h-time-picker-time-gap:var(--h-space-200);--h-time-picker-time-item-height:40px;--h-time-picker-time-item-width:64px;--h-time-picker-time-row-gap:var(--h-space-25);--h-timeline-bar-width:var(--h-space-25)px;--h-timeline-content-gap:var(--h-space-100);--h-timeline-content-padding-bottom:var(--h-space-300);--h-timeline-content-padding-top:var(--h-space-25);--h-timeline-gap:var(--h-space-150);--h-timeline-progress-circle-height:28px;--h-timeline-progress-circle-width:28px;--h-timeline-static-circle-height:12px;--h-timeline-static-circle-width:12px;--h-toast-background-color:var(--h-color-grey-1000);--h-toast-border-radius:var(--h-border-radius-md);--h-toast-bottom-position:var(--h-space-400);--h-toast-gap:var(--h-space-200);--h-toast-padding:var(--h-space-175);--h-toast-stack-gap:var(--h-space-150);--h-toast-text-gap:var(--h-space-100);--h-toggle-button-border-radius:var(--h-border-radius-md);--h-toggle-button-border-width:var(--h-border-width-2);--h-toggle-button-gap:var(--h-space-75);--h-toggle-button-height:var(--h-space-600)px;--h-toggle-button-min-width:80px;--h-toggle-button-padding-horizontal:var(--h-space-250);--h-toggle-button-padding-vertical:var(--h-space-150);--h-tooltip-background-color:var(--h-color-grey-1000);--h-tooltip-border-radius:var(--h-border-radius-md);--h-tooltip-gap-horizontal:var(--h-space-100);--h-tooltip-gap-vertical:var(--h-space-25);--h-tooltip-max-width:680px;--h-tooltip-padding-horizontal:var(--h-space-150);--h-tooltip-padding-vertical:var(--h-space-100);--h-card-padding-desktop:var(--h-space-300);--h-card-padding-none-desktop:0;--h-menu-item-padding-desktop:var(--h-space-150);--h-modal-width-desktop:680px;--h-select-item-padding-desktop:var(--h-space-150);--h-container-margin-horizontal-desktop:var(--h-space-400);--h-container-padding-bottom-desktop:var(--h-space-600);--h-container-padding-top-desktop:var(--h-space-400);--h-container-width-desktop:1096px;--h-heading-2xl-font-size-desktop:var(--h-font-size-650);--h-heading-2xl-line-height-desktop:var(--h-line-height-1050);--h-heading-lg-font-size-desktop:var(--h-font-size-400);--h-heading-lg-line-height-desktop:var(--h-line-height-800);--h-heading-md-font-size-desktop:var(--h-font-size-300);--h-heading-md-line-height-desktop:var(--h-line-height-600);--h-heading-sm-font-size-desktop:var(--h-font-size-150);--h-heading-sm-line-height-desktop:var(--h-line-height-400);--h-heading-xl-font-size-desktop:var(--h-font-size-550);--h-heading-xl-line-height-desktop:var(--h-line-height-950);--h-list-spacing-desktop:var(--h-space-200);--h-card-padding-mobile:var(--h-space-200);--h-card-padding-none-mobile:0;--h-menu-item-padding-mobile:var(--h-space-50);--h-modal-width-mobile:360px;--h-select-item-padding-mobile:var(--h-space-50);--h-container-margin-horizontal-mobile:var(--h-space-200);--h-container-padding-bottom-mobile:var(--h-space-400);--h-container-padding-top-mobile:var(--h-space-300);--h-container-width-mobile:360px;--h-body-text-font-weight:var(--h-font-weight-regular);--h-body-text-font-weight-bold:var(--h-font-weight-bold);--h-body-text-font-weight-semibold:var(--h-font-weight-semibold);--h-body-text-lg-font-size:var(--h-font-size-150);--h-body-text-lg-line-height:var(--h-line-height-500);--h-body-text-lg-paragraph-spacing:var(--h-font-size-150);--h-body-text-md-font-size:var(--h-font-size-100);--h-body-text-md-line-height:var(--h-line-height-500);--h-body-text-md-paragraph-spacing:var(--h-font-size-100);--h-body-text-sm-font-size:var(--h-font-size-90);--h-body-text-sm-line-height:var(--h-line-height-300);--h-body-text-sm-paragraph-spacing:var(--h-font-size-90);--h-detail-text-2xl-font-size:var(--h-font-size-300);--h-detail-text-2xl-letter-spacing:var(--h-letter-spacing-300);--h-detail-text-2xl-line-height:var(--h-line-height-700);--h-detail-text-3xl-font-size:var(--h-font-size-400);--h-detail-text-3xl-letter-spacing:var(--h-letter-spacing-400);--h-detail-text-3xl-line-height:var(--h-line-height-800);--h-detail-text-4xl-font-size:var(--h-font-size-500);--h-detail-text-4xl-letter-spacing:var(--h-letter-spacing-500);--h-detail-text-4xl-line-height:var(--h-line-height-800);--h-detail-text-font-weight:var(--h-font-weight-medium);--h-detail-text-lg-font-size:var(--h-font-size-150);--h-detail-text-lg-letter-spacing:var(--h-letter-spacing-150);--h-detail-text-lg-line-height:var(--h-line-height-400);--h-detail-text-md-font-size:var(--h-font-size-100);--h-detail-text-md-letter-spacing:var(--h-letter-spacing-100);--h-detail-text-md-line-height:var(--h-line-height-500);--h-detail-text-sm-font-size:var(--h-font-size-90);--h-detail-text-sm-letter-spacing:var(--h-letter-spacing-90);--h-detail-text-sm-line-height:var(--h-line-height-200);--h-detail-text-xl-font-size:var(--h-font-size-200);--h-detail-text-xl-letter-spacing:var(--h-letter-spacing-200);--h-detail-text-xl-line-height:var(--h-line-height-400);--h-heading-2xl-font-size-mobile:var(--h-font-size-575);--h-heading-2xl-font-weight:var(--h-font-weight-bold);--h-heading-2xl-line-height-mobile:var(--h-line-height-975);--h-heading-lg-font-size-mobile:var(--h-font-size-300);--h-heading-lg-font-weight:var(--h-font-weight-semibold);--h-heading-lg-line-height-mobile:var(--h-line-height-700);--h-heading-md-font-size-mobile:var(--h-font-size-200);--h-heading-md-font-weight:var(--h-font-weight-semibold);--h-heading-md-line-height-mobile:var(--h-line-height-500);--h-heading-sm-font-size-mobile:var(--h-font-size-150);--h-heading-sm-font-weight:var(--h-font-weight-semibold);--h-heading-sm-line-height-mobile:var(--h-line-height-400);--h-heading-xl-font-size-mobile:var(--h-font-size-400);--h-heading-xl-font-weight:var(--h-font-weight-bold);--h-heading-xl-line-height-mobile:var(--h-line-height-800);--h-list-spacing-mobile:var(--h-space-200);--h-card-padding-tablet:var(--h-space-300);--h-card-padding-none-tablet:0;--h-menu-item-padding-tablet:var(--h-space-150);--h-modal-width-tablet:504px;--h-select-item-padding-tablet:var(--h-space-150);--h-container-margin-horizontal-tablet:var(--h-space-400);--h-container-padding-bottom-tablet:var(--h-space-400);--h-container-padding-top-tablet:var(--h-space-300);--h-container-width-tablet:744px;--h-heading-2xl-font-size-tablet:var(--h-font-size-575);--h-heading-2xl-line-height-tablet:var(--h-line-height-975);--h-heading-lg-font-size-tablet:var(--h-font-size-300);--h-heading-lg-line-height-tablet:var(--h-line-height-700);--h-heading-md-font-size-tablet:var(--h-font-size-200);--h-heading-md-line-height-tablet:var(--h-line-height-500);--h-heading-sm-font-size-tablet:var(--h-font-size-150);--h-heading-sm-line-height-tablet:var(--h-line-height-400);--h-heading-xl-font-size-tablet:var(--h-font-size-400);--h-heading-xl-line-height-tablet:var(--h-line-height-800);--h-list-spacing-tablet:var(--h-space-200);--h-font-family-body:dm sans;--h-font-family-detail:dm mono;--h-font-family-heading:comic hams;--h-font-size-50:0.625rem;--h-font-size-75:0.75rem;--h-font-size-90:0.875rem;--h-font-size-100:1rem;--h-font-size-150:1.125rem;--h-font-size-200:1.25rem;--h-font-size-300:1.5rem;--h-font-size-400:1.875rem;--h-font-size-500:2.25rem;--h-font-size-550:2.5rem;--h-font-size-575:2.75rem;--h-font-size-600:3rem;--h-font-size-650:3.375rem;--h-font-size-700:3.75rem;--h-font-size-800:4.5rem;--h-font-size-900:6rem;--h-font-size-1000:8rem;--h-font-weight-bold:700;--h-font-weight-heavy:900;--h-font-weight-medium:500;--h-font-weight-regular:400;--h-font-weight-semibold:600;--h-letter-spacing-0:0.00px;--h-letter-spacing-50:-0.30px;--h-letter-spacing-75:-0.36px;--h-letter-spacing-90:-0.42px;--h-letter-spacing-100:-0.48px;--h-letter-spacing-150:-0.54px;--h-letter-spacing-200:-0.60px;--h-letter-spacing-300:-0.72px;--h-letter-spacing-400:-0.90px;--h-letter-spacing-500:-1.08px;--h-letter-spacing-550:-1.20px;--h-letter-spacing-600:-1.44px;--h-letter-spacing-700:-1.80px;--h-letter-spacing-800:-2.16px;--h-letter-spacing-900:-2.88px;--h-letter-spacing-1000:-3.84px;--h-line-height-50:0.75rem;--h-line-height-75:0.875rem;--h-line-height-100:1rem;--h-line-height-200:1.125rem;--h-line-height-300:1.25rem;--h-line-height-400:1.375rem;--h-line-height-500:1.5rem;--h-line-height-600:1.75rem;--h-line-height-700:2rem;--h-line-height-800:2.25rem;--h-line-height-900:2.5rem;--h-line-height-950:3rem;--h-line-height-975:3.25rem;--h-line-height-1000:3.5rem;--h-line-height-1050:3.875rem;--h-line-height-1100:4.5rem;--h-line-height-1200:5.625rem;--h-background-brand:var(--h-color-purple-700);--h-background-loading:var(--h-color-warm-white-200);--h-background-primary:var(--h-color-warm-white-50);--h-background-secondary:var(--h-color-grey-0);--h-border-strong:var(--h-color-grey-1000);--h-border-subtle:var(--h-color-warm-white-300);--h-feedback-danger-border:var(--h-color-red-700);--h-feedback-danger-foreground-default:var(--h-color-grey-1000);--h-feedback-danger-foreground-subtle:var(--h-color-red-700);--h-feedback-danger-surface-default:var(--h-color-red-500);--h-feedback-danger-surface-subtle:var(--h-color-red-300);--h-feedback-functional-border:var(--h-color-grey-600);--h-feedback-functional-foreground-default:var(--h-color-grey-1000);--h-feedback-functional-foreground-subtle:var(--h-color-grey-600);--h-feedback-functional-surface-default:var(--h-color-grey-400);--h-feedback-functional-surface-subtle:var(--h-color-grey-200);--h-feedback-info-border:var(--h-color-blue-700);--h-feedback-info-foreground-default:var(--h-color-grey-1000);--h-feedback-info-foreground-subtle:var(--h-color-blue-700);--h-feedback-info-surface-default:var(--h-color-blue-400);--h-feedback-info-surface-subtle:var(--h-color-blue-200);--h-feedback-positive-border:var(--h-color-green-700);--h-feedback-positive-foreground-default:var(--h-color-grey-1000);--h-feedback-positive-foreground-subtle:var(--h-color-green-700);--h-feedback-positive-surface-default:var(--h-color-green-500);--h-feedback-positive-surface-subtle:var(--h-color-green-200);--h-feedback-warning-border:var(--h-color-orange-750);--h-feedback-warning-foreground-default:var(--h-color-grey-1000);--h-feedback-warning-foreground-subtle:var(--h-color-orange-750);--h-feedback-warning-surface-default:var(--h-color-orange-500);--h-feedback-warning-surface-subtle:var(--h-color-orange-200);--h-focus-inverted:var(--h-color-warm-white-50);--h-focus-primary:var(--h-color-grey-1000);--h-icon-inverted:var(--h-color-warm-white-50);--h-icon-primary:var(--h-color-grey-1000);--h-interactive-affirmative-border-strong:var(--h-color-grey-1000);--h-interactive-affirmative-border-subtle:var(--h-color-green-800);--h-interactive-affirmative-foreground-strong:var(--h-color-warm-white-50);--h-interactive-affirmative-foreground-subtle:var(--h-color-green-800);--h-interactive-affirmative-surface-strong-active:var(--h-color-green-900);--h-interactive-affirmative-surface-strong-default:var(--h-color-green-700);--h-interactive-affirmative-surface-strong-hover:var(--h-color-green-800);--h-interactive-affirmative-surface-subtle-active:var(--h-color-green-100);--h-interactive-affirmative-surface-subtle-hover:var(--h-color-green-50);--h-interactive-brand-border-strong:var(--h-color-grey-1000);--h-interactive-brand-foreground-strong:var(--h-color-warm-white-50);--h-interactive-brand-surface-strong-active:var(--h-color-purple-900);--h-interactive-brand-surface-strong-default:var(--h-color-purple-700);--h-interactive-brand-surface-strong-hover:var(--h-color-purple-800);--h-interactive-destructive-border-strong:var(--h-color-grey-1000);--h-interactive-destructive-border-subtle:var(--h-color-red-800);--h-interactive-destructive-foreground-strong:var(--h-color-warm-white-50);--h-interactive-destructive-foreground-subtle:var(--h-color-red-800);--h-interactive-destructive-surface-strong-active:var(--h-color-red-900);--h-interactive-destructive-surface-strong-default:var(--h-color-red-700);--h-interactive-destructive-surface-strong-hover:var(--h-color-red-800);--h-interactive-destructive-surface-subtle-active:var(--h-color-red-100);--h-interactive-destructive-surface-subtle-hover:var(--h-color-red-50);--h-interactive-functional-border-inverted:var(--h-color-grey-50);--h-interactive-functional-border-strong:var(--h-color-grey-1000);--h-interactive-functional-border-subtle:var(--h-color-grey-1000);--h-interactive-functional-foreground-inverted:var(--h-color-grey-50);--h-interactive-functional-foreground-strong:var(--h-color-warm-white-50);--h-interactive-functional-foreground-subtle:var(--h-color-grey-1000);--h-interactive-functional-surface-strong-active:var(--h-color-grey-700);--h-interactive-functional-surface-strong-default:var(--h-color-grey-500);--h-interactive-functional-surface-strong-hover:var(--h-color-grey-600);--h-interactive-functional-surface-subtle-active:var(--h-color-grey-200);--h-interactive-functional-surface-subtle-hover:var(--h-color-grey-100);--h-interactive-functional-surface-subtle-inverted-active:var(--h-color-grey-900);--h-interactive-functional-surface-subtle-inverted-hover:var(--h-color-grey-800);--h-interactive-highlight-border-strong:var(--h-color-grey-1000);--h-interactive-highlight-foreground-strong:var(--h-color-grey-1000);--h-interactive-highlight-surface-strong-active:var(--h-color-yellow-600);--h-interactive-highlight-surface-strong-default:var(--h-color-yellow-400);--h-interactive-highlight-surface-strong-hover:var(--h-color-yellow-500);--h-interactive-neutral-border-subtle:var(--h-color-grey-1000);--h-interactive-neutral-foreground-subtle:var(--h-color-grey-1000);--h-interactive-neutral-surface-subtle-active:var(--h-color-warm-white-200);--h-interactive-neutral-surface-subtle-hover:var(--h-color-warm-white-100);--h-opacity-disabled:0.5;--h-surface-brand-default:var(--h-color-purple-700);--h-surface-brand-strong:var(--h-color-purple-1000);--h-surface-brand-subtle:var(--h-color-purple-300);--h-surface-broadband-default:var(--h-color-broadband-green-300);--h-surface-broadband-subtle:var(--h-color-broadband-green-200);--h-surface-cashback-default:var(--h-color-cashback-lilac-500);--h-surface-cashback-subtle:var(--h-color-cashback-lilac-300);--h-surface-energy-default:var(--h-color-energy-blue-300);--h-surface-energy-subtle:var(--h-color-energy-blue-200);--h-surface-highlight-default:var(--h-color-yellow-400);--h-surface-highlight-subtle:var(--h-color-yellow-200);--h-surface-insurance-default:var(--h-color-insurance-orange-400);--h-surface-insurance-subtle:var(--h-color-insurance-orange-300);--h-surface-mobile-default:var(--h-color-mobile-rose-400);--h-surface-mobile-subtle:var(--h-color-mobile-rose-200);--h-surface-neutral-strong:var(--h-color-grey-0);--h-surface-neutral-subtle:var(--h-color-warm-white-50);--h-surface-pig-default:var(--h-color-piggy-pink-300);--h-surface-pig-subtle:var(--h-color-piggy-pink-200);--h-text-affirmative:var(--h-color-green-700);--h-text-brand:var(--h-color-purple-700);--h-text-inverted:var(--h-color-warm-white-50);--h-text-primary:var(--h-color-grey-1000);--h-text-secondary:var(--h-color-grey-600);--h-space-0:0px;--h-space-25:2px;--h-space-50:4px;--h-space-75:6px;--h-space-100:8px;--h-space-150:12px;--h-space-175:14px;--h-space-200:16px;--h-space-250:20px;--h-space-300:24px;--h-space-350:28px;--h-space-400:32px;--h-space-500:40px;--h-space-600:48px;--h-space-700:56px;--h-space-800:64px;--h-space-900:72px;--h-space-1000:80px;--h-spacing-2xl-desktop:var(--h-space-500);--h-spacing-2xs-desktop:var(--h-space-25);--h-spacing-lg-desktop:var(--h-space-200);--h-spacing-md-desktop:var(--h-space-150);--h-spacing-none-desktop:0;--h-spacing-sm-desktop:var(--h-space-100);--h-spacing-xl-desktop:var(--h-space-300);--h-spacing-xs-desktop:var(--h-space-50);--h-spacing-2xl-mobile:var(--h-space-350);--h-spacing-2xs-mobile:var(--h-space-25);--h-spacing-lg-mobile:var(--h-space-200);--h-spacing-md-mobile:var(--h-space-150);--h-spacing-none-mobile:0;--h-spacing-sm-mobile:var(--h-space-100);--h-spacing-xl-mobile:var(--h-space-250);--h-spacing-xs-mobile:var(--h-space-50);--h-spacing-2xl-tablet:var(--h-space-350);--h-spacing-2xs-tablet:var(--h-space-25);--h-spacing-lg-tablet:var(--h-space-200);--h-spacing-md-tablet:var(--h-space-150);--h-spacing-none-tablet:0;--h-spacing-sm-tablet:var(--h-space-100);--h-spacing-xl-tablet:var(--h-space-300);--h-spacing-xs-tablet:var(--h-space-50);--h-shadow-brand:var(--h-color-purple-700);--h-shadow-broadband:var(--h-color-broadband-green-300);--h-shadow-cashback:var(--h-color-cashback-lilac-500);--h-shadow-default:var(--h-color-grey-1000);--h-shadow-energy:var(--h-color-energy-blue-300);--h-shadow-insurance:var(--h-color-insurance-orange-400);--h-shadow-mobile:var(--h-color-mobile-rose-400);--h-shadow-pig:var(--h-color-piggy-pink-300);--h-md-blur-desktop:0;--h-md-spread-desktop:0;--h-md-x-desktop:6px;--h-md-y-desktop:6px;--h-sm-blur-desktop:0;--h-sm-spread-desktop:0;--h-sm-x-desktop:4px;--h-sm-y-desktop:4px;--h-md-blur-mobile:0;--h-md-spread-mobile:0;--h-md-x-mobile:4px;--h-md-y-mobile:4px;--h-sm-blur-mobile:0;--h-sm-spread-mobile:0;--h-sm-x-mobile:4px;--h-sm-y-mobile:4px;--h-md-blur-tablet:0;--h-md-spread-tablet:0;--h-md-x-tablet:6px;--h-md-y-tablet:6px;--h-sm-blur-tablet:0;--h-sm-spread-tablet:0;--h-sm-x-tablet:4px;--h-sm-y-tablet:4px}.h-Box{box-sizing:border-box;display:block}.h-Container :where(.h-ContainerInner){flex-direction:column;margin-inline:var(--h-container-margin-horizontal-mobile);padding-bottom:var(--h-container-padding-bottom-mobile);padding-top:var(--h-container-padding-top-mobile);width:100%}@media (min-width:740px){.h-Container :where(.h-ContainerInner){margin-inline:var(--h-container-margin-horizontal-tablet);padding-bottom:var(--h-container-padding-bottom-tablet);padding-top:var(--h-container-padding-top-tablet)}}@media (min-width:992px){.h-Container :where(.h-ContainerInner){margin-inline:var(--h-container-margin-horizontal-desktop);max-width:var(--h-container-width-desktop);padding-bottom:var(--h-container-padding-bottom-desktop);padding-top:var(--h-container-padding-top-desktop)}}.h-Flex{align-items:stretch;box-sizing:border-box;display:flex;justify-content:flex-start}.h-Flex:where(.h-r-flex-d-row){flex-direction:row}.h-Flex:where(.h-r-flex-d-column){flex-direction:column}.h-Flex:where(.h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}@media (min-width:740px){.h-Flex:where(.tablet\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.tablet\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.tablet\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.tablet\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.tablet\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.tablet\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.tablet\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}@media (min-width:992px){.h-Flex:where(.desktop\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.desktop\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.desktop\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.desktop\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.desktop\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.desktop\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.desktop\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}@media (min-width:1200px){.h-Flex:where(.wide\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.wide\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.wide\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.wide\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.wide\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.wide\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.wide\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}.h-Grid{align-items:stretch;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:none;justify-content:flex-start}.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(4,minmax(0,1fr))}@media (min-width:740px){.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(8,minmax(0,1fr))}}@media (min-width:992px){.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(12,minmax(0,1fr))}}.h-Grid:where(.h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.h-r-grid-t){grid-template:var(--h-r-grid-t)}.h-Grid:where(.h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc)}.h-Grid:where(.h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr)}.h-Grid:where(.h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta)}.h-Grid:where(.h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac)}.h-Grid:where(.h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar)}.h-Grid:where(.h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.h-r-ji-start){justify-items:start}.h-Grid:where(.h-r-ji-center){justify-items:center}.h-Grid:where(.h-r-ji-end){justify-items:end}.h-Grid:where(.h-r-ji-stretch){justify-items:stretch}@media (min-width:740px){.h-Grid:where(.tablet\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.tablet\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-grid-t){grid-template:var(--h-r-grid-t-tablet)}.h-Grid:where(.tablet\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-tablet)}.h-Grid:where(.tablet\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-tablet)}.h-Grid:where(.tablet\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-tablet)}.h-Grid:where(.tablet\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-tablet)}.h-Grid:where(.tablet\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-tablet)}.h-Grid:where(.tablet\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.tablet\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.tablet\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.tablet\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.tablet\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.tablet\:h-r-ji-start){justify-items:start}.h-Grid:where(.tablet\:h-r-ji-center){justify-items:center}.h-Grid:where(.tablet\:h-r-ji-end){justify-items:end}.h-Grid:where(.tablet\:h-r-ji-stretch){justify-items:stretch}}@media (min-width:992px){.h-Grid:where(.desktop\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.desktop\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-grid-t){grid-template:var(--h-r-grid-t-desktop)}.h-Grid:where(.desktop\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-desktop)}.h-Grid:where(.desktop\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-desktop)}.h-Grid:where(.desktop\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-desktop)}.h-Grid:where(.desktop\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-desktop)}.h-Grid:where(.desktop\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-desktop)}.h-Grid:where(.desktop\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.desktop\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.desktop\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.desktop\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.desktop\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.desktop\:h-r-ji-start){justify-items:start}.h-Grid:where(.desktop\:h-r-ji-center){justify-items:center}.h-Grid:where(.desktop\:h-r-ji-end){justify-items:end}.h-Grid:where(.desktop\:h-r-ji-stretch){justify-items:stretch}}@media (min-width:1200px){.h-Grid:where(.wide\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.wide\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-grid-t){grid-template:var(--h-r-grid-t-wide)}.h-Grid:where(.wide\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-wide)}.h-Grid:where(.wide\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-wide)}.h-Grid:where(.wide\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-wide)}.h-Grid:where(.wide\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-wide)}.h-Grid:where(.wide\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-wide)}.h-Grid:where(.wide\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.wide\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.wide\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.wide\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.wide\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.wide\:h-r-ji-start){justify-items:start}.h-Grid:where(.wide\:h-r-ji-center){justify-items:center}.h-Grid:where(.wide\:h-r-ji-end){justify-items:end}.h-Grid:where(.wide\:h-r-ji-stretch){justify-items:stretch}}.h-BodyText{font-family:var(--h-font-family-body),Helvetica,Arial,sans-serif;font-weight:var(--h-body-text-font-weight)}.h-BodyText:where(.h-paragraph-spacing){margin-bottom:1em}.h-BodyText:where(.h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}@media (min-width:740px){.h-BodyText:where(.tablet\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.tablet\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.tablet\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}@media (min-width:992px){.h-BodyText:where(.desktop\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.desktop\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.desktop\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}@media (min-width:1200px){.h-BodyText:where(.wide\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.wide\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.wide\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}.h-DetailText{font-family:var(--h-font-family-detail),Courier,monospace;font-weight:var(--h-detail-text-font-weight)}.h-DetailText:where(.h-color-text){color:var(--h-text-primary)}.h-DetailText:where(.h-color-valid){color:var(--h-feedback-positive-foreground-subtle)}.h-DetailText:where(.h-color-invalid){color:var(--h-feedback-danger-foreground-subtle)}.h-DetailText:where([data-inverted]){color:var(--h-text-inverted)}.h-DetailText:where(.h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}@media (min-width:740px){.h-DetailText:where(.tablet\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.tablet\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.tablet\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.tablet\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}@media (min-width:992px){.h-DetailText:where(.desktop\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.desktop\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.desktop\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.desktop\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}@media (min-width:1200px){.h-DetailText:where(.wide\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.wide\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.wide\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.wide\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.wide\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.wide\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.wide\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}.h-Heading{color:var(--h-text-primary);font-family:var(--h-font-family-heading),Georgia,serif;font-weight:var(--h-font-weight-semibold)}.h-Heading:where([data-inverted]){color:var(--h-text-inverted)}.h-Heading:where(.h-size-sm){font-size:var(--h-heading-sm-font-size-mobile);line-height:var(--h-heading-sm-line-height-mobile)}.h-Heading:where(.h-size-md){font-size:var(--h-heading-md-font-size-mobile);line-height:var(--h-heading-md-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-md){font-size:var(--h-heading-md-font-size-desktop);line-height:var(--h-heading-md-line-height-desktop)}}.h-Heading:where(.h-size-lg){font-size:var(--h-heading-lg-font-size-mobile);line-height:var(--h-heading-lg-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-lg){font-size:var(--h-heading-lg-font-size-desktop);line-height:var(--h-heading-lg-line-height-desktop)}}.h-Heading:where(.h-size-xl){font-size:var(--h-heading-xl-font-size-mobile);font-weight:var(--h-heading-xl-font-weight);line-height:var(--h-heading-xl-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-xl){font-size:var(--h-heading-xl-font-size-desktop);line-height:var(--h-heading-xl-line-height-desktop)}}.h-Heading:where(.h-size-2xl){font-size:var(--h-heading-2xl-font-size-mobile);font-weight:var(--h-heading-2xl-font-weight);line-height:var(--h-heading-2xl-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-2xl){font-size:var(--h-heading-2xl-font-size-desktop);line-height:var(--h-heading-2xl-line-height-desktop)}}.h-Strong{font-family:inherit;font-size:inherit;font-weight:var(--h-font-weight-semibold)}.h-Em,.h-Strong{color:inherit;line-height:inherit}.h-Em{font-style:italic}.h-Divider{all:unset;align-self:stretch;background-color:var(--h-border-subtle);display:block;flex-shrink:0}.h-Divider:where([data-orientation=horizontal]){height:var(--h-divider-border-width);width:auto}.h-Divider:where([data-orientation=vertical]){height:auto;width:var(--h-divider-border-width)}.h-ButtonBase{all:unset;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;cursor:pointer;display:inline-flex;flex-shrink:0;justify-content:center;outline:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:top;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;background-color:var(--h-button-base-background-color);border-radius:var(--h-button-border-radius);box-shadow:inset 0 0 0 var(--h-button-border-width) var(--h-button-base-border-color);color:var(--h-button-base-foreground-color);touch-action:manipulation;transition:background-color .2s ease-out}.h-ButtonBase:where([data-colorscheme=highlight]){--h-solid-background-color:var(--h-interactive-highlight-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-highlight-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-highlight-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-highlight-foreground-strong);--h-solid-border-color:var(--h-interactive-highlight-border-strong);--h-outline-border-color:transparent;--h-emphasis-background-color:var(--h-interactive-highlight-surface-strong-default);--h-emphasis-background-color-active:var(--h-interactive-highlight-surface-strong-active);--h-emphasis-background-color-hover:var(--h-interactive-highlight-surface-strong-hover);--h-emphasis-foreground-color:var(--h-interactive-highlight-foreground-strong);--h-emphasis-shadow-color:var(--h-shadow-default);--h-emphasis-border-color:var(--h-interactive-highlight-border-strong);--h-emphasis-transform:translateY(4px) translateX(4px)}.h-ButtonBase:where([data-colorscheme=affirmative]){--h-solid-background-color:var(--h-interactive-affirmative-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-affirmative-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-affirmative-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-affirmative-foreground-strong);--h-solid-border-color:var(--h-interactive-affirmative-border-strong);--h-outline-background-color-active:var(--h-interactive-affirmative-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-affirmative-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-affirmative-foreground-subtle);--h-outline-border-color:var(--h-interactive-affirmative-border-subtle);--h-ghost-background-color-active:var(--h-interactive-affirmative-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-affirmative-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-affirmative-foreground-subtle);--h-emphasis-border-color:transparent}.h-ButtonBase:where([data-colorscheme=destructive]){--h-solid-background-color:var(--h-interactive-destructive-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-destructive-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-destructive-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-destructive-foreground-strong);--h-solid-border-color:var(--h-interactive-destructive-border-strong);--h-outline-background-color-active:var(--h-interactive-destructive-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-destructive-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-destructive-foreground-subtle);--h-outline-border-color:var(--h-interactive-destructive-border-subtle);--h-ghost-background-color-active:var(--h-interactive-destructive-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-destructive-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-destructive-foreground-subtle);--h-emphasis-border-color:transparent}.h-ButtonBase:where([data-colorscheme=functional]){--h-outline-background-color-active:var(--h-interactive-functional-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-functional-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-functional-foreground-subtle);--h-outline-border-color:var(--h-interactive-functional-border-subtle);--h-ghost-background-color-active:var(--h-interactive-functional-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-functional-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-functional-foreground-subtle)}.h-ButtonBase:where([data-colorscheme=functional]):where([data-inverted]){--h-outline-background-color-active:var(
1
+ @layer reset{*,:after,:before{box-sizing:border-box;margin:0;padding:0}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--h-text-primary);font-family:var(--h-font-family-body),Helvetica,Arial,sans-serif;line-height:var(--h-line-height-500);min-height:100vh;text-rendering:optimizeSpeed}:where(html){-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}:where(h1,h2,h3,h4){font-family:var(--h-font-family-heading),Georgia,serif;text-rendering:optimizeLegibility}:where(a:not([class])){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}:where(ul,ol){padding-inline-start:var(--h-space-400)}:where(ul[role=list],ol[role=list]){list-style:none;padding:0}:where(img,picture,video){display:block;max-width:100%}:where(audio,iframe,img,svg,video){max-block-size:100%;max-inline-size:100%}:where(svg){overflow:visible}:where(fieldset){border:none;margin:0;min-inline-size:0;padding:0}:where(label):has(+:where(textarea,input,select)){display:block}:where(input,button,textarea,select){color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;word-spacing:inherit}:where(button,a){font-family:var(--h-font-family-body),Courier New,Courier,monospace}:where(input:is([type=checkbox],[type=radio]),button,select,a):not([aria-disabled=true]){cursor:pointer}:where(p,h1,h2,h3,h4){overflow-wrap:break-word}:where(h1,h2,h3,h4){text-wrap:balance}:where(:target){scroll-margin-block:5ex}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}@media (prefers-reduced-motion:reduce){:where(html:focus-within){scroll-behavior:auto}*,:after,:before{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}:where(.visually-hidden:not(:focus-within,:active)){border:0!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;position:absolute!important;-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;white-space:nowrap!important;width:1px!important}}:root{--h-border-radius-full:9999px;--h-border-radius-lg:12px;--h-border-radius-md:8px;--h-border-radius-none:0px;--h-border-radius-sm:6px;--h-border-radius-xl:16px;--h-border-radius-xs:4px;--h-border-width-1:1px;--h-border-width-2:2px;--h-color-blue-0:#f8fbff;--h-color-blue-50:#eef7ff;--h-color-blue-100:#d9ecff;--h-color-blue-200:#bcddff;--h-color-blue-300:#93c1ff;--h-color-blue-400:#6bb0ff;--h-color-blue-500:#41a0ff;--h-color-blue-600:#2786f1;--h-color-blue-700:#1c6cd4;--h-color-blue-800:#2354a4;--h-color-blue-900:#0b3375;--h-color-blue-950:#042455;--h-color-blue-1000:#001433;--h-color-broadband-green-0:#f8faf6;--h-color-broadband-green-50:#f2f6ed;--h-color-broadband-green-100:#e7efdc;--h-color-broadband-green-200:#d2e6b0;--h-color-broadband-green-300:#8cba3b;--h-color-broadband-green-400:#7aa031;--h-color-broadband-green-500:#6e932b;--h-color-broadband-green-600:#64862a;--h-color-broadband-green-700:#5a7926;--h-color-broadband-green-800:#506c21;--h-color-broadband-green-900:#4f6b20;--h-color-broadband-green-950:#35421c;--h-color-broadband-green-1000:#252d16;--h-color-cashback-lilac-0:#f7f5f8;--h-color-cashback-lilac-50:#f5f2f6;--h-color-cashback-lilac-100:#ebdef5;--h-color-cashback-lilac-200:#e4caf5;--h-color-cashback-lilac-300:#dfbdf5;--h-color-cashback-lilac-400:#ce9cf0;--h-color-cashback-lilac-500:#be7aeb;--h-color-cashback-lilac-600:#9f3be2;--h-color-cashback-lilac-700:#8b2bc9;--h-color-cashback-lilac-800:#7821b8;--h-color-cashback-lilac-900:#7429b5;--h-color-cashback-lilac-950:#522270;--h-color-cashback-lilac-1000:#3a1f52;--h-color-energy-blue-0:#f7f9fa;--h-color-energy-blue-50:#edf4f6;--h-color-energy-blue-100:#d4e5e9;--h-color-energy-blue-200:#bddee4;--h-color-energy-blue-300:#6db5c3;--h-color-energy-blue-400:#579daa;--h-color-energy-blue-500:#4c8a97;--h-color-energy-blue-600:#367683;--h-color-energy-blue-700:#326e7a;--h-color-energy-blue-800:#2d6571;--h-color-energy-blue-900:#2c6370;--h-color-energy-blue-950:#254348;--h-color-energy-blue-1000:#1a2f35;--h-color-green-0:#f8fdf9;--h-color-green-50:#e7f9f0;--h-color-green-100:#c5edda;--h-color-green-200:#a2e2c3;--h-color-green-300:#74d6a0;--h-color-green-400:#58ca93;--h-color-green-500:#36bf7d;--h-color-green-600:#19a660;--h-color-green-700:#0f834a;--h-color-green-800:#04663a;--h-color-green-900:#074b2a;--h-color-green-950:#033d21;--h-color-green-1000:#002e18;--h-color-grey-0:#fff;--h-color-grey-50:#f7f7f7;--h-color-grey-100:#ebebeb;--h-color-grey-200:#d3d3d3;--h-color-grey-300:#b2afae;--h-color-grey-400:#919191;--h-color-grey-500:#888;--h-color-grey-600:#5b5b5b;--h-color-grey-700:#4c4c4c;--h-color-grey-800:#3f3f3f;--h-color-grey-900:#3a3837;--h-color-grey-925:#2f2d2d;--h-color-grey-950:#232323;--h-color-grey-975:#191919;--h-color-grey-1000:#101010;--h-color-insurance-orange-0:#fefcf9;--h-color-insurance-orange-50:#fdf5eb;--h-color-insurance-orange-100:#fcecd6;--h-color-insurance-orange-200:#ffcda0;--h-color-insurance-orange-300:#ffb46d;--h-color-insurance-orange-400:#ff7b00;--h-color-insurance-orange-500:#f06b00;--h-color-insurance-orange-600:#e26400;--h-color-insurance-orange-700:#cb5b00;--h-color-insurance-orange-800:#9b4c0e;--h-color-insurance-orange-900:#7f4518;--h-color-insurance-orange-950:#5a3213;--h-color-insurance-orange-1000:#3f2616;--h-color-mobile-rose-0:#fffaf9;--h-color-mobile-rose-50:#fdf2f6;--h-color-mobile-rose-100:#faeaf2;--h-color-mobile-rose-200:#fad0e9;--h-color-mobile-rose-300:#f49fd2;--h-color-mobile-rose-400:#ee6dbb;--h-color-mobile-rose-500:#e652aa;--h-color-mobile-rose-600:#de379a;--h-color-mobile-rose-700:#d61c89;--h-color-mobile-rose-800:#a7266d;--h-color-mobile-rose-900:#8a3260;--h-color-mobile-rose-950:#601f42;--h-color-mobile-rose-1000:#421a32;--h-color-orange-0:#fffdf8;--h-color-orange-50:#fff5ed;--h-color-orange-100:#ffe6d4;--h-color-orange-200:#ffcca8;--h-color-orange-300:#ffab70;--h-color-orange-400:#ff9639;--h-color-orange-500:#ff8010;--h-color-orange-600:#f56e00;--h-color-orange-700:#cf5d00;--h-color-orange-750:#be5400;--h-color-orange-800:#ad4b00;--h-color-orange-900:#893900;--h-color-orange-950:#6b2d00;--h-color-orange-1000:#4a1f00;--h-color-piggy-pink-0:#faf5fa;--h-color-piggy-pink-50:#f6f1f7;--h-color-piggy-pink-100:#f9eafa;--h-color-piggy-pink-200:#f9ceff;--h-color-piggy-pink-300:#f295ff;--h-color-piggy-pink-400:#ed66ff;--h-color-piggy-pink-500:#d052c8;--h-color-piggy-pink-600:#bc48b4;--h-color-piggy-pink-700:#a53fa5;--h-color-piggy-pink-800:#8f358f;--h-color-piggy-pink-900:#7a1f7e;--h-color-piggy-pink-950:#5d2167;--h-color-piggy-pink-1000:#3f1448;--h-color-purple-0:#f7f6f9;--h-color-purple-50:#eeebf4;--h-color-purple-100:#ddd5eb;--h-color-purple-200:#c6b5e2;--h-color-purple-300:#af90de;--h-color-purple-400:#996cda;--h-color-purple-500:#8851d6;--h-color-purple-600:#8149ce;--h-color-purple-700:#7a42c8;--h-color-purple-800:#5c2ca9;--h-color-purple-900:#442484;--h-color-purple-950:#331c68;--h-color-purple-1000:#26164f;--h-color-red-0:#fff6f5;--h-color-red-50:#fff3f1;--h-color-red-100:#ffe3df;--h-color-red-200:#ffccc5;--h-color-red-300:#ffa89d;--h-color-red-400:#ff7964;--h-color-red-500:#ff634a;--h-color-red-600:#f4412a;--h-color-red-700:#de2612;--h-color-red-800:#a4281e;--h-color-red-900:#6b1f1a;--h-color-red-950:#521a16;--h-color-red-1000:#3b1512;--h-color-warm-white-0:#fdfcfa;--h-color-warm-white-50:#fcfbf2;--h-color-warm-white-100:#f7f6eb;--h-color-warm-white-200:#f1efe4;--h-color-warm-white-300:#d4d2c0;--h-color-warm-white-400:#bfb9a9;--h-color-warm-white-500:#a99f8b;--h-color-warm-white-600:#89816e;--h-color-warm-white-700:#6a6354;--h-color-warm-white-800:#4c473d;--h-color-warm-white-900:#30302c;--h-color-warm-white-950:#282825;--h-color-warm-white-975:#20201d;--h-color-warm-white-1000:#191917;--h-color-yellow-0:#fffef9;--h-color-yellow-50:#fff8ea;--h-color-yellow-100:#ffe8b8;--h-color-yellow-200:#ffd885;--h-color-yellow-300:#ffc852;--h-color-yellow-400:#ffb921;--h-color-yellow-500:#eba400;--h-color-yellow-600:#d1950b;--h-color-yellow-700:#b78715;--h-color-yellow-800:#9c7820;--h-color-yellow-900:#82692b;--h-color-yellow-950:#756230;--h-color-yellow-1000:#4c401f;--h-accordion-gap:var(--h-space-150);--h-accordion-heading-gap:var(--h-space-25);--h-accordion-item-content-gap:var(--h-space-200);--h-accordion-item-content-padding-bottom:var(--h-space-200);--h-accordion-item-content-padding-horizontal:var(--h-space-50);--h-accordion-item-content-padding-top:var(--h-space-50);--h-accordion-item-gap:0;--h-accordion-item-heading-gap:var(--h-space-200);--h-accordion-item-heading-padding-horizontal:var(--h-space-50);--h-accordion-item-heading-padding-vertical:var(--h-space-200);--h-accordion-max-width:680px;--h-accordion-min-width:288px;--h-accordion-padding:0;--h-alert-border-radius:var(--h-border-radius-md);--h-alert-border-width:var(--h-border-width-2);--h-alert-content-gap:var(--h-space-50);--h-alert-gap:var(--h-space-100);--h-alert-icon-button-unstyled-foreground-color:var(--h-color-grey-1000);--h-alert-icon-button-unstyled-foreground-color-active:var(--h-color-grey-800);--h-alert-icon-button-unstyled-foreground-color-hover:var(--h-color-grey-900);--h-alert-link-color:var(--h-color-grey-1000);--h-alert-link-color-active:var(--h-color-grey-800);--h-alert-link-color-hover:var(--h-color-grey-900);--h-alert-padding:var(--h-space-175);--h-avatar-image-border-width:var(--h-border-width-1);--h-avatar-md-border-radius:var(--h-border-radius-md);--h-avatar-md-height:var(--h-space-600);--h-avatar-md-width:var(--h-space-600);--h-avatar-sm-border-radius:var(--h-border-radius-sm);--h-avatar-sm-height:var(--h-space-400);--h-avatar-sm-width:var(--h-space-400);--h-badge-border-radius:var(--h-border-radius-xs);--h-badge-flat-base-border-bottom-left-radius:0;--h-badge-flat-base-border-bottom-right-radius:0;--h-badge-gap:var(--h-space-50);--h-badge-md-height:var(--h-space-400);--h-badge-md-padding-vertical:var(--h-space-50);--h-badge-outline-border-width:var(--h-border-width-1);--h-badge-padding-horizontal:var(--h-space-75);--h-badge-sm-height:var(--h-space-300);--h-badge-sm-padding-vertical:var(--h-space-25);--h-banner-default-content-gap:var(--h-space-150);--h-banner-default-content-text-gap:var(--h-space-100);--h-banner-default-gap:var(--h-space-200);--h-banner-default-horizontal-illustration-width:100;--h-banner-default-horizontal-image-max-width:240;--h-banner-default-horizontal-image-min-width:160;--h-banner-default-horizontal-max-width:680px;--h-banner-default-horizontal-min-width:240px;--h-banner-default-image-height:160;--h-banner-default-padding:var(--h-space-200);--h-banner-default-vertical-max-width:504px;--h-banner-default-vertical-min-width:240px;--h-banner-highlight-content-gap:var(--h-space-150);--h-banner-highlight-gap:0;--h-banner-highlight-padding:var(--h-space-200);--h-banner-image-container-border-color:var(--h-color-grey-1000);--h-bottom-sheet-border-top-left-radius:var(--h-border-radius-xl);--h-bottom-sheet-border-top-right-radius:var(--h-border-radius-xl);--h-bottom-sheet-gap:var(--h-space-75);--h-bottom-sheet-handle-background-color:var(--h-color-grey-200);--h-bottom-sheet-handle-border-radius:var(--h-border-radius-sm);--h-bottom-sheet-handle-height:5px;--h-bottom-sheet-handle-width:36px;--h-bottom-sheet-padding:var(--h-space-200);--h-breadcrumb-gap:var(--h-space-100);--h-button-border-radius:var(--h-border-radius-md);--h-button-border-width:var(--h-border-width-2);--h-button-gap:var(--h-space-75);--h-button-md-padding-horizontal:var(--h-space-200);--h-button-md-padding-vertical:var(--h-space-150);--h-button-min-width:30px;--h-button-shadow-color:var(--h-color-grey-1000);--h-button-sm-padding-horizontal:var(--h-space-200);--h-button-sm-padding-vertical:var(--h-space-50);--h-card-border-radius:var(--h-border-radius-xl);--h-card-brand-border-width:var(--h-border-width-2);--h-card-neutral-emphasis-border-width:var(--h-border-width-2);--h-card-neutral-subtle-border-width:var(--h-border-width-1);--h-card-selectable-border-width:var(--h-border-width-1);--h-card-selectable-border-width-selected:var(--h-border-width-2);--h-card-selectable-gap:var(--h-space-200);--h-card-selectable-label-gap:var(--h-space-150);--h-card-accordion-button-group-gap:var(--h-space-150);--h-card-accordion-gap:var(--h-space-300);--h-card-accordion-item-gap:var(--h-space-250);--h-card-action-content-gap:var(--h-space-150);--h-card-action-content-padding-horizontal:var(--h-space-200);--h-card-action-content-padding-vertical:var(--h-space-150);--h-card-content-banner-illustration-lg-width:100px;--h-card-content-banner-illustration-md-width:80px;--h-card-content-banner-illustration-sm-width:60px;--h-card-content-banner-illustration-xl-width:120px;--h-card-content-banner-illustration-xs-width:40px;--h-carousel-control-gap:var(--h-space-100);--h-carousel-control-item-border-width:var(--h-border-width-2);--h-carousel-control-size:var(--h-space-150);--h-checkbox-border-radius:var(--h-border-radius-xs);--h-checkbox-border-width:var(--h-border-width-2);--h-checkbox-checked-background-color:var(--h-color-grey-1000);--h-checkbox-checked-icon-color:var(--h-color-warm-white-50);--h-checkbox-gap:var(--h-space-100);--h-checkbox-group-gap:var(--h-space-150);--h-checkbox-group-stack-gap:var(--h-space-250);--h-checkbox-outline-color-active:var(--h-color-warm-white-300);--h-checkbox-outline-color-hover:var(--h-color-warm-white-200);--h-checkbox-outline-width:3px;--h-checkbox-tile-border-radius:var(--h-border-radius-md);--h-checkbox-tile-border-width:var(--h-border-width-1);--h-checkbox-tile-border-width-selected:var(--h-border-width-2);--h-checkbox-tile-gap:var(--h-space-100);--h-checkbox-tile-group-gap:var(--h-space-75);--h-checkbox-tile-group-heading-gap:var(--h-space-25);--h-checkbox-tile-group-stack-gap:var(--h-space-150);--h-checkbox-tile-max-width:680px;--h-checkbox-tile-min-width:80px;--h-checkbox-tile-padding:var(--h-space-150);--h-date-picker-border-radius:var(--h-border-radius-md);--h-date-picker-border-width:var(--h-border-width-1);--h-date-picker-border-width-focused:var(--h-border-width-2);--h-date-picker-calendar-border-radius:var(--h-border-radius-md);--h-date-picker-calendar-border-width:var(--h-border-width-1);--h-date-picker-calendar-column-gap:var(--h-space-50);--h-date-picker-calendar-footer-gap:var(--h-space-100);--h-date-picker-calendar-gap:var(--h-space-200);--h-date-picker-calendar-header-control-gap:var(--h-space-350);--h-date-picker-calendar-header-date-gap:var(--h-space-100);--h-date-picker-calendar-item-border-radius:var(--h-border-radius-md);--h-date-picker-calendar-item-min-width:32px;--h-date-picker-calendar-item-range-background:var(--h-color-grey-50);--h-date-picker-calendar-item-roundel-background-color-inverted:var(--h-color-warm-white-50);--h-date-picker-calendar-item-roundel-height:var(--h-space-75);--h-date-picker-calendar-item-roundel-width:var(--h-space-75);--h-date-picker-calendar-max-width:420px;--h-date-picker-calendar-min-width:320px;--h-date-picker-calendar-padding:var(--h-space-200);--h-date-picker-calendar-row-gap:var(--h-space-25);--h-date-picker-gap:var(--h-space-75);--h-date-picker-gap-container:var(--h-space-50);--h-date-picker-header-control-gap:var(--h-space-350);--h-date-picker-height:var(--h-space-600);--h-date-picker-max-width:504px;--h-date-picker-min-width:288px;--h-date-picker-padding-horizontal:var(--h-space-200);--h-date-picker-padding-vertical:var(--h-space-150);--h-description-list-gap:var(--h-space-150);--h-description-list-item-column-gap:var(--h-space-25);--h-description-list-item-gap:var(--h-space-200);--h-description-list-item-row-gap:var(--h-space-100);--h-description-list-item-row-heading-width:180px;--h-description-list-stack-gap:var(--h-space-200);--h-divider-border-width:var(--h-border-width-1);--h-drawer-footer-horizontal-gap:var(--h-space-200);--h-drawer-footer-padding:var(--h-space-300);--h-drawer-footer-vertical-gap:var(--h-space-100);--h-drawer-gap:var(--h-space-250);--h-drawer-heading-gap:var(--h-space-100);--h-drawer-width:360px;--h-expandable-card-gap-horizontal:var(--h-space-150);--h-expandable-card-gap-vertical:var(--h-space-25);--h-expandable-card-group-gap:var(--h-space-150);--h-form-field-gap:var(--h-space-75);--h-form-field-helper-gap:var(--h-space-25);--h-icon-button-border-radius:var(--h-border-radius-md);--h-icon-button-md-height:48px;--h-icon-button-md-padding-horizontal:var(--h-space-150);--h-icon-button-md-padding-vertical:var(--h-space-150);--h-icon-button-md-width:48px;--h-icon-button-sm-height:32px;--h-icon-button-sm-padding-horizontal:var(--h-space-75);--h-icon-button-sm-padding-vertical:var(--h-space-75);--h-icon-button-sm-width:32px;--h-icon-button-unstyled-foreground-color:var(--h-color-grey-1000);--h-icon-button-unstyled-foreground-color-active:var(--h-color-grey-800);--h-icon-button-unstyled-foreground-color-hover:var(--h-color-grey-900);--h-icon-button-unstyled-inverted-foreground-color:var(--h-color-grey-50);--h-icon-button-unstyled-inverted-foreground-color-active:var(--h-color-grey-300);--h-icon-button-unstyled-inverted-foreground-color-hover:var(--h-color-grey-200);--h-icon-button-unstyled-md-height:24px;--h-icon-button-unstyled-md-width:24px;--h-icon-button-unstyled-padding-horizontal:0;--h-icon-button-unstyled-padding-vertical:0;--h-icon-button-unstyled-sm-height:20px;--h-icon-button-unstyled-sm-width:20px;--h-icon-container-lg-border-radius-none:0;--h-icon-container-lg-border-radius-rounded:var(--h-border-radius-md);--h-icon-container-lg-height:var(--h-space-800);--h-icon-container-lg-padding:var(--h-space-250);--h-icon-container-lg-width:var(--h-space-800);--h-icon-container-md-border-radius-rounded:var(--h-border-radius-md);--h-icon-container-md-height:var(--h-space-600);--h-icon-container-md-padding:var(--h-space-150);--h-icon-container-md-width:var(--h-space-600);--h-icon-container-sm-border-radius-rounded:var(--h-border-radius-sm);--h-icon-container-sm-height:var(--h-space-400);--h-icon-container-sm-padding:var(--h-space-75);--h-icon-container-sm-width:var(--h-space-400);--h-illustrations-color-mode:light;--h-inline-link-color:var(--h-color-blue-700);--h-inline-link-color-visited:var(--h-color-purple-700);--h-inline-link-inverted-color:var(--h-color-warm-white-50);--h-inline-link-inverted-color-active:var(--h-color-warm-white-200);--h-inline-link-inverted-color-hover:var(--h-color-warm-white-100);--h-inline-link-inverted-color-visited:var(--h-color-warm-white-200);--h-input-border-radius:var(--h-border-radius-md);--h-input-border-width:var(--h-border-width-1);--h-input-border-width-focused:var(--h-border-width-2);--h-input-currency-gap:var(--h-space-25);--h-input-currency-height:60px;--h-input-date-gap:var(--h-space-100);--h-input-gap:var(--h-space-75);--h-input-heading-gap:var(--h-space-150);--h-input-heading-text-gap:var(--h-space-25);--h-input-height:48px;--h-input-label-gap:var(--h-space-25);--h-input-max-width:504px;--h-input-min-width:120px;--h-input-padding-horizontal:var(--h-space-200);--h-input-padding-vertical:var(--h-space-150);--h-input-stepper-gap:var(--h-space-50);--h-input-text-area-height:96px;--h-input-validation-gap:var(--h-space-25);--h-input-verification-gap:var(--h-space-100);--h-link-color:var(--h-color-grey-1000);--h-link-color-active:var(--h-color-grey-800);--h-link-color-hover:var(--h-color-grey-900);--h-link-gap:var(--h-space-25);--h-link-inverted-color:var(--h-color-warm-white-50);--h-link-inverted-color-active:var(--h-color-warm-white-200);--h-link-inverted-color-hover:var(--h-color-warm-white-100);--h-list-container-emphasis-warm-white-border-radius:var(--h-border-radius-xl);--h-list-container-emphasis-white-border-radius:var(--h-border-radius-xl);--h-list-container-none-border-radius:0;--h-list-container-none-item-padding-horizontal:0;--h-list-container-subtle-warm-white-border-radius:var(--h-border-radius-xl);--h-list-container-subtle-white-border-radius:var(--h-border-radius-xl);--h-list-gap:var(--h-space-150);--h-list-indicator-padding:var(--h-space-100);--h-list-item-content-gap:var(--h-space-25);--h-list-item-functional-border-width:var(--h-border-width-1);--h-list-item-functional-padding:var(--h-space-200);--h-list-item-functional-padding-none:0;--h-list-item-gap:var(--h-space-150);--h-list-item-stylised-border-width:var(--h-border-width-2);--h-list-item-stylised-height:var(--h-space-900);--h-list-item-stylised-padding-left:0;--h-list-item-stylised-padding-right:var(--h-space-200);--h-menu-border-width:var(--h-border-width-1);--h-menu-gap:var(--h-space-50);--h-menu-item-border-radius:var(--h-border-radius-xs);--h-menu-item-gap:var(--h-space-75);--h-menu-item-padding:var(--h-space-150);--h-menu-list-gap:var(--h-space-100);--h-menu-max-width:504px;--h-menu-min-width:288px;--h-menu-padding:var(--h-space-50);--h-modal-action-gap:var(--h-space-150);--h-modal-border-radius:var(--h-border-radius-xl);--h-modal-content-gap:var(--h-space-150);--h-modal-content-mobile-padding-bottom:var(--h-space-200);--h-modal-gap:var(--h-space-300);--h-modal-handle-padding-bottom:var(--h-space-200);--h-modal-heading-gap:var(--h-space-300);--h-modal-illustration-padding:var(--h-space-600);--h-modal-padding:var(--h-space-300);--h-navigation-bar-border-radius-none:0;--h-navigation-bar-border-radius-rounded:var(--h-border-radius-xs);--h-navigation-border-bottom:var(--h-color-purple-800);--h-navigation-border-radius:var(--h-border-radius-sm);--h-navigation-desktop-customer-gap:var(--h-space-150);--h-navigation-desktop-height:88px;--h-navigation-desktop-partner-gap:var(--h-space-50);--h-navigation-desktop-partner-header-gap:var(--h-space-300);--h-navigation-desktop-partner-padding:var(--h-space-300);--h-navigation-divider-border-color:var(--h-color-purple-800);--h-navigation-item-customer-container-gap:var(--h-space-50);--h-navigation-item-customer-container-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-container-padding-vertical:var(--h-space-100);--h-navigation-item-customer-mobile-container-padding-horizontal:var(--h-space-100);--h-navigation-item-customer-mobile-container-padding-vertical:var(--h-space-100);--h-navigation-item-customer-mobile-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-mobile-padding-vertical:var(--h-space-300);--h-navigation-item-customer-padding-horizontal:var(--h-space-50);--h-navigation-item-customer-padding-vertical:var(--h-space-300);--h-navigation-item-partner-container-gap:var(--h-space-50);--h-navigation-item-partner-container-padding:var(--h-space-100);--h-navigation-item-partner-padding-horizontal:var(--h-space-200);--h-navigation-item-partner-sub-padding-left:var(--h-space-400);--h-navigation-item-partner-sub-padding-right:var(--h-space-200);--h-navigation-mobile-gap:var(--h-space-150);--h-navigation-mobile-height:64px;--h-navigation-mobile-padding:var(--h-space-200);--h-overlay-background-color:var(--h-color-grey-1000);--h-overlay-opacity:0.75;--h-pagination-gap:var(--h-space-100);--h-pagination-item-gap:var(--h-space-25);--h-pagination-item-height:40px;--h-pagination-item-radius:var(--h-border-radius-md);--h-pagination-item-width:40px;--h-parts-home-indicator-foreground-color:var(--h-color-grey-1000);--h-parts-home-indicator-foreground-color-inverted:var(--h-color-grey-0);--h-parts-modal-stack-background-color:var(--h-color-grey-1000);--h-parts-modal-stack-background-color-card-bottom:var(--h-color-grey-0);--h-parts-modal-stack-background-color-card-top:var(--h-color-grey-100);--h-parts-placeholder-border-color:var(--h-color-grey-1000);--h-parts-roundel-border-radius:var(--h-border-radius-full);--h-parts-roundel-pending-border-width:var(--h-border-width-2);--h-parts-scroll-bar-background-color:var(--h-color-warm-white-300);--h-parts-scroll-bar-border-radius:var(--h-border-radius-full);--h-parts-status-bar-foreground-color:var(--h-color-grey-1000);--h-parts-status-bar-foreground-color-inverted:var(--h-color-grey-0);--h-parts-status-bar-notch:var(--h-color-grey-1000);--h-pill-border-radius:var(--h-border-radius-full);--h-pill-border-width:var(--h-border-width-1);--h-pill-gap:var(--h-space-75);--h-pill-group-gap:var(--h-space-100);--h-pill-height:var(--h-space-600);--h-pill-min-width:66px;--h-pill-padding-horizontal:var(--h-space-250);--h-pill-padding-vertical:var(--h-space-150);--h-progress-bar-bar-color:var(--h-color-warm-white-200);--h-progress-bar-circular-md-bar-width:12px;--h-progress-bar-circular-md-gap:0;--h-progress-bar-circular-md-height:140px;--h-progress-bar-circular-md-label-font-family:var(--h-font-family-body);--h-progress-bar-circular-md-label-font-size:var(--h-font-size-300);--h-progress-bar-circular-md-label-font-weight:var(--h-font-weight-regular);--h-progress-bar-circular-md-label-line-height:var(--h-line-height-500);--h-progress-bar-circular-sm-bar-width:8px;--h-progress-bar-circular-sm-height:80px;--h-progress-bar-linear-bar-border-radius:var(--h-border-radius-full);--h-progress-bar-linear-bar-height:12px;--h-progress-bar-linear-gap:var(--h-space-100);--h-progress-bar-linear-label-gap:var(--h-space-100);--h-progress-bar-progress-danger-color:var(--h-color-red-600);--h-progress-bar-progress-default-color:var(--h-color-purple-1000);--h-progress-bar-progress-success-color:var(--h-color-green-600);--h-progress-stepper-bar-complete-background-color:var(--h-color-purple-700);--h-progress-stepper-bar-height:2px;--h-progress-stepper-gap-horizontal:0;--h-progress-stepper-gap-vertical:var(--h-space-50);--h-progress-stepper-indicator-complete-icon-color:var(--h-color-warm-white-50);--h-progress-stepper-indicator-future-border-width:var(--h-border-width-2);--h-progress-stepper-indicator-height:28px;--h-progress-stepper-indicator-width:28px;--h-radio-border-radius:var(--h-border-radius-full);--h-radio-border-width:var(--h-border-width-2);--h-radio-checked-color:var(--h-color-grey-1000);--h-radio-gap:var(--h-space-100);--h-radio-group-gap:var(--h-space-200);--h-radio-group-stack-gap:var(--h-space-250);--h-radio-outline-color-active:var(--h-color-warm-white-300);--h-radio-outline-color-hover:var(--h-color-warm-white-200);--h-radio-outline-width:3px;--h-radio-tile-border-radius:var(--h-border-radius-md);--h-radio-tile-border-width:var(--h-border-width-1);--h-radio-tile-border-width-selected:var(--h-border-width-2);--h-radio-tile-gap:var(--h-space-100);--h-radio-tile-group-gap:var(--h-space-150);--h-radio-tile-group-heading-gap:var(--h-space-25);--h-radio-tile-group-stack-gap:var(--h-space-150);--h-radio-tile-max-width:680px;--h-radio-tile-min-width:80px;--h-radio-tile-padding:var(--h-space-150);--h-rating-border-width:var(--h-border-width-2);--h-rating-gap:var(--h-space-50);--h-section-header-gap:var(--h-space-150);--h-section-header-text-content-gap:var(--h-space-25);--h-segmented-control-border-radius:var(--h-border-radius-full);--h-segmented-control-gap:var(--h-space-75);--h-segmented-control-group-border-radius:var(--h-border-radius-full);--h-segmented-control-group-border-width:var(--h-border-width-1);--h-segmented-control-group-gap:var(--h-space-50);--h-segmented-control-group-height:var(--h-space-600);--h-segmented-control-group-padding:var(--h-space-25);--h-segmented-control-height:var(--h-space-500);--h-segmented-control-min-width:66px;--h-segmented-control-padding-horizontal:var(--h-space-200);--h-segmented-control-padding-vertical:var(--h-space-100);--h-select-border-radius:var(--h-border-radius-md);--h-select-border-width:var(--h-border-width-1);--h-select-border-width-focused:var(--h-border-width-2);--h-select-dropdown-border-width:var(--h-border-width-1);--h-select-dropdown-gap:var(--h-space-50);--h-select-dropdown-gap-content:var(--h-space-100);--h-select-dropdown-item-border-radius:var(--h-border-radius-xs);--h-select-dropdown-item-gap:var(--h-space-75);--h-select-dropdown-item-padding:var(--h-space-150);--h-select-dropdown-padding:var(--h-space-50);--h-select-gap:var(--h-space-75);--h-select-gap-container:var(--h-space-50);--h-select-height:48px;--h-select-max-width:504px;--h-select-min-width:288px;--h-select-padding-horizontal:var(--h-space-200);--h-select-padding-vertical:var(--h-space-150);--h-select-validation-gap:var(--h-space-25);--h-skeleton-loading-color:var(--h-color-warm-white-200);--h-spinner-default-fill:var(--h-color-purple-700);--h-spinner-lg-size:40px;--h-spinner-lg-stroke-width:3;--h-spinner-md-size:28px;--h-spinner-md-stroke-width:2.5;--h-spinner-padding:var(--h-space-25);--h-spinner-sm-size:20px;--h-spinner-sm-stroke-width:2;--h-spinner-xs-size:16px;--h-spinner-xs-stroke-width:1.5;--h-switch-md-circle-size:28px;--h-switch-md-height:32px;--h-switch-md-width:60px;--h-switch-padding:var(--h-space-25);--h-switch-radius:var(--h-border-radius-full);--h-switch-sm-circle-size:20px;--h-switch-sm-height:24px;--h-switch-sm-width:44px;--h-switch-unchecked-background-color-hover:var(--h-color-grey-500);--h-table-border-radius:var(--h-border-radius-xl);--h-table-cell-border-width:var(--h-border-width-1);--h-table-cell-min-height:48px;--h-table-cell-padding:var(--h-space-150);--h-table-emphasis-border-width:var(--h-border-width-2);--h-table-header-cell-border-width:var(--h-border-width-2);--h-table-header-cell-foregound-color:var(--h-color-grey-1000);--h-table-header-cell-foregound-color-inverted:var(--h-color-grey-0);--h-table-header-cell-gap:var(--h-space-100);--h-table-header-cell-height:56px;--h-table-header-cell-padding-horizontal:var(--h-space-150);--h-table-header-cell-padding-vertical:var(--h-space-200);--h-table-subtle-border-width:var(--h-border-width-1);--h-tabs-divider-border-width:var(--h-border-width-2);--h-tabs-gap:var(--h-space-150);--h-tabs-item-gap:var(--h-space-75);--h-tabs-item-padding-horizontal:var(--h-space-150);--h-tabs-item-padding-vertical:var(--h-space-200);--h-tabs-item-selected-border-bottom-radius:0;--h-tabs-item-selected-border-top-radius:var(--h-border-radius-xs);--h-tabs-lg-height:var(--h-space-800);--h-tabs-md-height:var(--h-space-700);--h-time-picker-fade:#fff0;--h-time-picker-gap:var(--h-space-75);--h-time-picker-gap-container:var(--h-space-50);--h-time-picker-min-width:288px;--h-time-picker-padding-horizontal:var(--h-space-200);--h-time-picker-padding-vertical:var(--h-space-150);--h-time-picker-time-column-gap:var(--h-space-50);--h-time-picker-time-content-gap:var(--h-space-100);--h-time-picker-time-content-item-gap:var(--h-space-25);--h-time-picker-time-footer-gap:var(--h-space-100);--h-time-picker-time-gap:var(--h-space-200);--h-time-picker-time-item-height:40px;--h-time-picker-time-item-width:64px;--h-time-picker-time-row-gap:var(--h-space-25);--h-timeline-bar-width:var(--h-space-25);--h-timeline-content-gap:var(--h-space-100);--h-timeline-content-padding-bottom:var(--h-space-300);--h-timeline-content-padding-top:var(--h-space-25);--h-timeline-gap:var(--h-space-150);--h-timeline-progress-circle-height:28px;--h-timeline-progress-circle-width:28px;--h-timeline-static-circle-height:12px;--h-timeline-static-circle-width:12px;--h-toast-background-color:var(--h-color-grey-1000);--h-toast-border-radius:var(--h-border-radius-md);--h-toast-bottom-position:var(--h-space-400);--h-toast-gap:var(--h-space-200);--h-toast-padding:var(--h-space-175);--h-toast-stack-gap:var(--h-space-150);--h-toast-text-gap:var(--h-space-100);--h-toggle-button-border-radius:var(--h-border-radius-md);--h-toggle-button-border-width:var(--h-border-width-2);--h-toggle-button-gap:var(--h-space-75);--h-toggle-button-height:var(--h-space-600);--h-toggle-button-min-width:80px;--h-toggle-button-padding-horizontal:var(--h-space-250);--h-toggle-button-padding-vertical:var(--h-space-150);--h-tooltip-background-color:var(--h-color-grey-1000);--h-tooltip-border-radius:var(--h-border-radius-md);--h-tooltip-gap-horizontal:var(--h-space-100);--h-tooltip-gap-vertical:var(--h-space-25);--h-tooltip-max-width:680px;--h-tooltip-padding-horizontal:var(--h-space-150);--h-tooltip-padding-vertical:var(--h-space-100);--h-card-padding-desktop:var(--h-space-300);--h-card-padding-none-desktop:0;--h-menu-item-padding-desktop:var(--h-space-150);--h-modal-width-desktop:680px;--h-select-item-padding-desktop:var(--h-space-150);--h-container-margin-horizontal-desktop:var(--h-space-400);--h-container-padding-bottom-desktop:var(--h-space-600);--h-container-padding-top-desktop:var(--h-space-400);--h-container-width-desktop:1096px;--h-heading-2xl-font-size-desktop:var(--h-font-size-650);--h-heading-2xl-line-height-desktop:var(--h-line-height-1050);--h-heading-lg-font-size-desktop:var(--h-font-size-400);--h-heading-lg-line-height-desktop:var(--h-line-height-800);--h-heading-md-font-size-desktop:var(--h-font-size-300);--h-heading-md-line-height-desktop:var(--h-line-height-600);--h-heading-sm-font-size-desktop:var(--h-font-size-150);--h-heading-sm-line-height-desktop:var(--h-line-height-400);--h-heading-xl-font-size-desktop:var(--h-font-size-550);--h-heading-xl-line-height-desktop:var(--h-line-height-950);--h-list-spacing-desktop:var(--h-space-200);--h-card-padding-mobile:var(--h-space-200);--h-card-padding-none-mobile:0;--h-menu-item-padding-mobile:var(--h-space-50);--h-modal-width-mobile:360px;--h-select-item-padding-mobile:var(--h-space-50);--h-container-margin-horizontal-mobile:var(--h-space-200);--h-container-padding-bottom-mobile:var(--h-space-400);--h-container-padding-top-mobile:var(--h-space-300);--h-container-width-mobile:360px;--h-body-text-font-weight:var(--h-font-weight-regular);--h-body-text-font-weight-bold:var(--h-font-weight-bold);--h-body-text-font-weight-semibold:var(--h-font-weight-semibold);--h-body-text-lg-font-size:var(--h-font-size-150);--h-body-text-lg-line-height:var(--h-line-height-500);--h-body-text-lg-paragraph-spacing:var(--h-font-size-150);--h-body-text-md-font-size:var(--h-font-size-100);--h-body-text-md-line-height:var(--h-line-height-500);--h-body-text-md-paragraph-spacing:var(--h-font-size-100);--h-body-text-sm-font-size:var(--h-font-size-90);--h-body-text-sm-line-height:var(--h-line-height-300);--h-body-text-sm-paragraph-spacing:var(--h-font-size-90);--h-detail-text-2xl-font-size:var(--h-font-size-300);--h-detail-text-2xl-letter-spacing:var(--h-letter-spacing-300);--h-detail-text-2xl-line-height:var(--h-line-height-700);--h-detail-text-3xl-font-size:var(--h-font-size-400);--h-detail-text-3xl-letter-spacing:var(--h-letter-spacing-400);--h-detail-text-3xl-line-height:var(--h-line-height-800);--h-detail-text-4xl-font-size:var(--h-font-size-500);--h-detail-text-4xl-letter-spacing:var(--h-letter-spacing-500);--h-detail-text-4xl-line-height:var(--h-line-height-800);--h-detail-text-font-weight:var(--h-font-weight-medium);--h-detail-text-lg-font-size:var(--h-font-size-150);--h-detail-text-lg-letter-spacing:var(--h-letter-spacing-150);--h-detail-text-lg-line-height:var(--h-line-height-400);--h-detail-text-md-font-size:var(--h-font-size-100);--h-detail-text-md-letter-spacing:var(--h-letter-spacing-100);--h-detail-text-md-line-height:var(--h-line-height-500);--h-detail-text-sm-font-size:var(--h-font-size-90);--h-detail-text-sm-letter-spacing:var(--h-letter-spacing-90);--h-detail-text-sm-line-height:var(--h-line-height-200);--h-detail-text-xl-font-size:var(--h-font-size-200);--h-detail-text-xl-letter-spacing:var(--h-letter-spacing-200);--h-detail-text-xl-line-height:var(--h-line-height-400);--h-heading-2xl-font-size-mobile:var(--h-font-size-575);--h-heading-2xl-font-weight:var(--h-font-weight-bold);--h-heading-2xl-line-height-mobile:var(--h-line-height-975);--h-heading-lg-font-size-mobile:var(--h-font-size-300);--h-heading-lg-font-weight:var(--h-font-weight-semibold);--h-heading-lg-line-height-mobile:var(--h-line-height-700);--h-heading-md-font-size-mobile:var(--h-font-size-200);--h-heading-md-font-weight:var(--h-font-weight-semibold);--h-heading-md-line-height-mobile:var(--h-line-height-500);--h-heading-sm-font-size-mobile:var(--h-font-size-150);--h-heading-sm-font-weight:var(--h-font-weight-semibold);--h-heading-sm-line-height-mobile:var(--h-line-height-400);--h-heading-xl-font-size-mobile:var(--h-font-size-400);--h-heading-xl-font-weight:var(--h-font-weight-bold);--h-heading-xl-line-height-mobile:var(--h-line-height-800);--h-list-spacing-mobile:var(--h-space-200);--h-card-padding-tablet:var(--h-space-300);--h-card-padding-none-tablet:0;--h-menu-item-padding-tablet:var(--h-space-150);--h-modal-width-tablet:504px;--h-select-item-padding-tablet:var(--h-space-150);--h-container-margin-horizontal-tablet:var(--h-space-400);--h-container-padding-bottom-tablet:var(--h-space-400);--h-container-padding-top-tablet:var(--h-space-300);--h-container-width-tablet:744px;--h-heading-2xl-font-size-tablet:var(--h-font-size-575);--h-heading-2xl-line-height-tablet:var(--h-line-height-975);--h-heading-lg-font-size-tablet:var(--h-font-size-300);--h-heading-lg-line-height-tablet:var(--h-line-height-700);--h-heading-md-font-size-tablet:var(--h-font-size-200);--h-heading-md-line-height-tablet:var(--h-line-height-500);--h-heading-sm-font-size-tablet:var(--h-font-size-150);--h-heading-sm-line-height-tablet:var(--h-line-height-400);--h-heading-xl-font-size-tablet:var(--h-font-size-400);--h-heading-xl-line-height-tablet:var(--h-line-height-800);--h-list-spacing-tablet:var(--h-space-200);--h-font-family-body:dm sans;--h-font-family-detail:dm mono;--h-font-family-heading:comic hams;--h-font-size-50:0.625rem;--h-font-size-75:0.75rem;--h-font-size-90:0.875rem;--h-font-size-100:1rem;--h-font-size-150:1.125rem;--h-font-size-200:1.25rem;--h-font-size-300:1.5rem;--h-font-size-400:1.875rem;--h-font-size-500:2.25rem;--h-font-size-550:2.5rem;--h-font-size-575:2.75rem;--h-font-size-600:3rem;--h-font-size-650:3.375rem;--h-font-size-700:3.75rem;--h-font-size-800:4.5rem;--h-font-size-900:6rem;--h-font-size-1000:8rem;--h-font-weight-bold:700;--h-font-weight-heavy:900;--h-font-weight-medium:500;--h-font-weight-regular:400;--h-font-weight-semibold:600;--h-letter-spacing-0:0.00px;--h-letter-spacing-50:-0.30px;--h-letter-spacing-75:-0.36px;--h-letter-spacing-90:-0.42px;--h-letter-spacing-100:-0.48px;--h-letter-spacing-150:-0.54px;--h-letter-spacing-200:-0.60px;--h-letter-spacing-300:-0.72px;--h-letter-spacing-400:-0.90px;--h-letter-spacing-500:-1.08px;--h-letter-spacing-550:-1.20px;--h-letter-spacing-600:-1.44px;--h-letter-spacing-700:-1.80px;--h-letter-spacing-800:-2.16px;--h-letter-spacing-900:-2.88px;--h-letter-spacing-1000:-3.84px;--h-line-height-50:0.75rem;--h-line-height-75:0.875rem;--h-line-height-100:1rem;--h-line-height-200:1.125rem;--h-line-height-300:1.25rem;--h-line-height-400:1.375rem;--h-line-height-500:1.5rem;--h-line-height-600:1.75rem;--h-line-height-700:2rem;--h-line-height-800:2.25rem;--h-line-height-900:2.5rem;--h-line-height-950:3rem;--h-line-height-975:3.25rem;--h-line-height-1000:3.5rem;--h-line-height-1050:3.875rem;--h-line-height-1100:4.5rem;--h-line-height-1200:5.625rem;--h-background-brand:var(--h-color-purple-700);--h-background-loading:var(--h-color-warm-white-200);--h-background-primary:var(--h-color-warm-white-50);--h-background-secondary:var(--h-color-grey-0);--h-border-strong:var(--h-color-grey-1000);--h-border-subtle:var(--h-color-warm-white-300);--h-feedback-danger-border:var(--h-color-red-700);--h-feedback-danger-foreground-default:var(--h-color-grey-1000);--h-feedback-danger-foreground-subtle:var(--h-color-red-700);--h-feedback-danger-surface-default:var(--h-color-red-500);--h-feedback-danger-surface-subtle:var(--h-color-red-300);--h-feedback-functional-border:var(--h-color-grey-600);--h-feedback-functional-foreground-default:var(--h-color-grey-1000);--h-feedback-functional-foreground-subtle:var(--h-color-grey-600);--h-feedback-functional-surface-default:var(--h-color-grey-400);--h-feedback-functional-surface-subtle:var(--h-color-grey-200);--h-feedback-info-border:var(--h-color-blue-700);--h-feedback-info-foreground-default:var(--h-color-grey-1000);--h-feedback-info-foreground-subtle:var(--h-color-blue-700);--h-feedback-info-surface-default:var(--h-color-blue-400);--h-feedback-info-surface-subtle:var(--h-color-blue-200);--h-feedback-positive-border:var(--h-color-green-700);--h-feedback-positive-foreground-default:var(--h-color-grey-1000);--h-feedback-positive-foreground-subtle:var(--h-color-green-700);--h-feedback-positive-surface-default:var(--h-color-green-500);--h-feedback-positive-surface-subtle:var(--h-color-green-200);--h-feedback-warning-border:var(--h-color-orange-750);--h-feedback-warning-foreground-default:var(--h-color-grey-1000);--h-feedback-warning-foreground-subtle:var(--h-color-orange-750);--h-feedback-warning-surface-default:var(--h-color-orange-500);--h-feedback-warning-surface-subtle:var(--h-color-orange-200);--h-focus-inverted:var(--h-color-warm-white-50);--h-focus-primary:var(--h-color-grey-1000);--h-icon-inverted:var(--h-color-warm-white-50);--h-icon-primary:var(--h-color-grey-1000);--h-interactive-affirmative-border-strong:var(--h-color-grey-1000);--h-interactive-affirmative-border-subtle:var(--h-color-green-800);--h-interactive-affirmative-foreground-strong:var(--h-color-warm-white-50);--h-interactive-affirmative-foreground-subtle:var(--h-color-green-800);--h-interactive-affirmative-surface-strong-active:var(--h-color-green-900);--h-interactive-affirmative-surface-strong-default:var(--h-color-green-700);--h-interactive-affirmative-surface-strong-hover:var(--h-color-green-800);--h-interactive-affirmative-surface-subtle-active:var(--h-color-green-100);--h-interactive-affirmative-surface-subtle-hover:var(--h-color-green-50);--h-interactive-brand-border-strong:var(--h-color-grey-1000);--h-interactive-brand-foreground-strong:var(--h-color-warm-white-50);--h-interactive-brand-surface-strong-active:var(--h-color-purple-900);--h-interactive-brand-surface-strong-default:var(--h-color-purple-700);--h-interactive-brand-surface-strong-hover:var(--h-color-purple-800);--h-interactive-destructive-border-strong:var(--h-color-grey-1000);--h-interactive-destructive-border-subtle:var(--h-color-red-800);--h-interactive-destructive-foreground-strong:var(--h-color-warm-white-50);--h-interactive-destructive-foreground-subtle:var(--h-color-red-800);--h-interactive-destructive-surface-strong-active:var(--h-color-red-900);--h-interactive-destructive-surface-strong-default:var(--h-color-red-700);--h-interactive-destructive-surface-strong-hover:var(--h-color-red-800);--h-interactive-destructive-surface-subtle-active:var(--h-color-red-100);--h-interactive-destructive-surface-subtle-hover:var(--h-color-red-50);--h-interactive-functional-border-inverted:var(--h-color-grey-50);--h-interactive-functional-border-strong:var(--h-color-grey-1000);--h-interactive-functional-border-subtle:var(--h-color-grey-1000);--h-interactive-functional-foreground-inverted:var(--h-color-grey-50);--h-interactive-functional-foreground-strong:var(--h-color-warm-white-50);--h-interactive-functional-foreground-subtle:var(--h-color-grey-1000);--h-interactive-functional-surface-strong-active:var(--h-color-grey-700);--h-interactive-functional-surface-strong-default:var(--h-color-grey-500);--h-interactive-functional-surface-strong-hover:var(--h-color-grey-600);--h-interactive-functional-surface-subtle-active:var(--h-color-grey-200);--h-interactive-functional-surface-subtle-hover:var(--h-color-grey-100);--h-interactive-functional-surface-subtle-inverted-active:var(--h-color-grey-900);--h-interactive-functional-surface-subtle-inverted-hover:var(--h-color-grey-800);--h-interactive-highlight-border-strong:var(--h-color-grey-1000);--h-interactive-highlight-foreground-strong:var(--h-color-grey-1000);--h-interactive-highlight-surface-strong-active:var(--h-color-yellow-600);--h-interactive-highlight-surface-strong-default:var(--h-color-yellow-400);--h-interactive-highlight-surface-strong-hover:var(--h-color-yellow-500);--h-interactive-neutral-border-subtle:var(--h-color-grey-1000);--h-interactive-neutral-foreground-subtle:var(--h-color-grey-1000);--h-interactive-neutral-surface-subtle-active:var(--h-color-warm-white-200);--h-interactive-neutral-surface-subtle-hover:var(--h-color-warm-white-100);--h-opacity-disabled:0.5;--h-surface-brand-default:var(--h-color-purple-700);--h-surface-brand-strong:var(--h-color-purple-1000);--h-surface-brand-subtle:var(--h-color-purple-300);--h-surface-broadband-default:var(--h-color-broadband-green-300);--h-surface-broadband-subtle:var(--h-color-broadband-green-200);--h-surface-cashback-default:var(--h-color-cashback-lilac-500);--h-surface-cashback-subtle:var(--h-color-cashback-lilac-300);--h-surface-energy-default:var(--h-color-energy-blue-300);--h-surface-energy-subtle:var(--h-color-energy-blue-200);--h-surface-highlight-default:var(--h-color-yellow-400);--h-surface-highlight-subtle:var(--h-color-yellow-200);--h-surface-insurance-default:var(--h-color-insurance-orange-400);--h-surface-insurance-subtle:var(--h-color-insurance-orange-300);--h-surface-mobile-default:var(--h-color-mobile-rose-400);--h-surface-mobile-subtle:var(--h-color-mobile-rose-200);--h-surface-neutral-strong:var(--h-color-grey-0);--h-surface-neutral-subtle:var(--h-color-warm-white-50);--h-surface-pig-default:var(--h-color-piggy-pink-300);--h-surface-pig-subtle:var(--h-color-piggy-pink-200);--h-text-affirmative:var(--h-color-green-700);--h-text-brand:var(--h-color-purple-700);--h-text-inverted:var(--h-color-warm-white-50);--h-text-primary:var(--h-color-grey-1000);--h-text-secondary:var(--h-color-grey-600);--h-space-0:0px;--h-space-25:2px;--h-space-50:4px;--h-space-75:6px;--h-space-100:8px;--h-space-150:12px;--h-space-175:14px;--h-space-200:16px;--h-space-250:20px;--h-space-300:24px;--h-space-350:28px;--h-space-400:32px;--h-space-500:40px;--h-space-600:48px;--h-space-700:56px;--h-space-800:64px;--h-space-900:72px;--h-space-1000:80px;--h-spacing-2xl-desktop:var(--h-space-500);--h-spacing-2xs-desktop:var(--h-space-25);--h-spacing-lg-desktop:var(--h-space-200);--h-spacing-md-desktop:var(--h-space-150);--h-spacing-none-desktop:0;--h-spacing-sm-desktop:var(--h-space-100);--h-spacing-xl-desktop:var(--h-space-300);--h-spacing-xs-desktop:var(--h-space-50);--h-spacing-2xl-mobile:var(--h-space-350);--h-spacing-2xs-mobile:var(--h-space-25);--h-spacing-lg-mobile:var(--h-space-200);--h-spacing-md-mobile:var(--h-space-150);--h-spacing-none-mobile:0;--h-spacing-sm-mobile:var(--h-space-100);--h-spacing-xl-mobile:var(--h-space-250);--h-spacing-xs-mobile:var(--h-space-50);--h-spacing-2xl-tablet:var(--h-space-350);--h-spacing-2xs-tablet:var(--h-space-25);--h-spacing-lg-tablet:var(--h-space-200);--h-spacing-md-tablet:var(--h-space-150);--h-spacing-none-tablet:0;--h-spacing-sm-tablet:var(--h-space-100);--h-spacing-xl-tablet:var(--h-space-300);--h-spacing-xs-tablet:var(--h-space-50);--h-shadow-brand:var(--h-color-purple-700);--h-shadow-broadband:var(--h-color-broadband-green-300);--h-shadow-cashback:var(--h-color-cashback-lilac-500);--h-shadow-default:var(--h-color-grey-1000);--h-shadow-energy:var(--h-color-energy-blue-300);--h-shadow-insurance:var(--h-color-insurance-orange-400);--h-shadow-mobile:var(--h-color-mobile-rose-400);--h-shadow-pig:var(--h-color-piggy-pink-300);--h-md-blur-desktop:0;--h-md-spread-desktop:0;--h-md-x-desktop:6px;--h-md-y-desktop:6px;--h-sm-blur-desktop:0;--h-sm-spread-desktop:0;--h-sm-x-desktop:4px;--h-sm-y-desktop:4px;--h-md-blur-mobile:0;--h-md-spread-mobile:0;--h-md-x-mobile:4px;--h-md-y-mobile:4px;--h-sm-blur-mobile:0;--h-sm-spread-mobile:0;--h-sm-x-mobile:4px;--h-sm-y-mobile:4px;--h-md-blur-tablet:0;--h-md-spread-tablet:0;--h-md-x-tablet:6px;--h-md-y-tablet:6px;--h-sm-blur-tablet:0;--h-sm-spread-tablet:0;--h-sm-x-tablet:4px;--h-sm-y-tablet:4px}.h-Box{box-sizing:border-box;display:block}.h-Container :where(.h-ContainerInner){flex-direction:column;margin-inline:var(--h-container-margin-horizontal-mobile);padding-bottom:var(--h-container-padding-bottom-mobile);padding-top:var(--h-container-padding-top-mobile);width:100%}@media (min-width:740px){.h-Container :where(.h-ContainerInner){margin-inline:var(--h-container-margin-horizontal-tablet);padding-bottom:var(--h-container-padding-bottom-tablet);padding-top:var(--h-container-padding-top-tablet)}}@media (min-width:992px){.h-Container :where(.h-ContainerInner){margin-inline:var(--h-container-margin-horizontal-desktop);max-width:var(--h-container-width-desktop);padding-bottom:var(--h-container-padding-bottom-desktop);padding-top:var(--h-container-padding-top-desktop)}}.h-Flex{align-items:stretch;box-sizing:border-box;display:flex;justify-content:flex-start}.h-Flex:where(.h-r-flex-d-row){flex-direction:row}.h-Flex:where(.h-r-flex-d-column){flex-direction:column}.h-Flex:where(.h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}@media (min-width:740px){.h-Flex:where(.tablet\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.tablet\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.tablet\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.tablet\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.tablet\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.tablet\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.tablet\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}@media (min-width:992px){.h-Flex:where(.desktop\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.desktop\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.desktop\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.desktop\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.desktop\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.desktop\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.desktop\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}@media (min-width:1200px){.h-Flex:where(.wide\:h-r-flex-d-row){flex-direction:row}.h-Flex:where(.wide\:h-r-flex-d-column){flex-direction:column}.h-Flex:where(.wide\:h-r-flex-d-row-reverse){flex-direction:row-reverse}.h-Flex:where(.wide\:h-r-flex-d-column-reverse){flex-direction:column-reverse}.h-Flex:where(.wide\:h-r-flex-w-nowrap){flex-wrap:nowrap}.h-Flex:where(.wide\:h-r-flex-w-wrap){flex-wrap:wrap}.h-Flex:where(.wide\:h-r-flex-w-wrap-reverse){flex-wrap:wrap-reverse}}.h-Grid{align-items:stretch;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:none;justify-content:flex-start}.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(4,minmax(0,1fr))}@media (min-width:740px){.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(8,minmax(0,1fr))}}@media (min-width:992px){.h-Grid:where([data-responsive-columns]){grid-template-columns:repeat(12,minmax(0,1fr))}}.h-Grid:where(.h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.h-r-grid-t){grid-template:var(--h-r-grid-t)}.h-Grid:where(.h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc)}.h-Grid:where(.h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr)}.h-Grid:where(.h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta)}.h-Grid:where(.h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac)}.h-Grid:where(.h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar)}.h-Grid:where(.h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.h-r-ji-start){justify-items:start}.h-Grid:where(.h-r-ji-center){justify-items:center}.h-Grid:where(.h-r-ji-end){justify-items:end}.h-Grid:where(.h-r-ji-stretch){justify-items:stretch}@media (min-width:740px){.h-Grid:where(.tablet\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.tablet\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.tablet\:h-r-grid-t){grid-template:var(--h-r-grid-t-tablet)}.h-Grid:where(.tablet\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-tablet)}.h-Grid:where(.tablet\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-tablet)}.h-Grid:where(.tablet\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-tablet)}.h-Grid:where(.tablet\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-tablet)}.h-Grid:where(.tablet\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-tablet)}.h-Grid:where(.tablet\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.tablet\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.tablet\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.tablet\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.tablet\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.tablet\:h-r-ji-start){justify-items:start}.h-Grid:where(.tablet\:h-r-ji-center){justify-items:center}.h-Grid:where(.tablet\:h-r-ji-end){justify-items:end}.h-Grid:where(.tablet\:h-r-ji-stretch){justify-items:stretch}}@media (min-width:992px){.h-Grid:where(.desktop\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.desktop\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.desktop\:h-r-grid-t){grid-template:var(--h-r-grid-t-desktop)}.h-Grid:where(.desktop\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-desktop)}.h-Grid:where(.desktop\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-desktop)}.h-Grid:where(.desktop\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-desktop)}.h-Grid:where(.desktop\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-desktop)}.h-Grid:where(.desktop\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-desktop)}.h-Grid:where(.desktop\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.desktop\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.desktop\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.desktop\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.desktop\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.desktop\:h-r-ji-start){justify-items:start}.h-Grid:where(.desktop\:h-r-ji-center){justify-items:center}.h-Grid:where(.desktop\:h-r-ji-end){justify-items:end}.h-Grid:where(.desktop\:h-r-ji-stretch){justify-items:stretch}}@media (min-width:1200px){.h-Grid:where(.wide\:h-r-columns-1){grid-template-columns:minmax(0,1fr)}.h-Grid:where(.wide\:h-r-columns-2){grid-template-columns:repeat(2,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-3){grid-template-columns:repeat(3,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-4){grid-template-columns:repeat(4,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-5){grid-template-columns:repeat(5,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-6){grid-template-columns:repeat(6,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-7){grid-template-columns:repeat(7,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-8){grid-template-columns:repeat(8,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-9){grid-template-columns:repeat(9,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-10){grid-template-columns:repeat(10,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-11){grid-template-columns:repeat(11,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-columns-12){grid-template-columns:repeat(12,minmax(0,1fr))}.h-Grid:where(.wide\:h-r-grid-t){grid-template:var(--h-r-grid-t-wide)}.h-Grid:where(.wide\:h-r-grid-tc){grid-template-columns:var(--h-r-grid-tc-wide)}.h-Grid:where(.wide\:h-r-grid-tr){grid-template-rows:var(--h-r-grid-tr-wide)}.h-Grid:where(.wide\:h-r-grid-ta){grid-template-areas:var(--h-r-grid-ta-wide)}.h-Grid:where(.wide\:h-r-grid-ac){grid-auto-columns:var(--h-r-grid-ac-wide)}.h-Grid:where(.wide\:h-r-grid-ar){grid-auto-rows:var(--h-r-grid-ar-wide)}.h-Grid:where(.wide\:h-r-grid-af-row){grid-auto-flow:row}.h-Grid:where(.wide\:h-r-grid-af-column){grid-auto-flow:column}.h-Grid:where(.wide\:h-r-grid-af-dense){grid-auto-flow:dense}.h-Grid:where(.wide\:h-r-grid-af-row-dense){grid-auto-flow:row dense}.h-Grid:where(.wide\:h-r-grid-af-column-dense){grid-auto-flow:column dense}.h-Grid:where(.wide\:h-r-ji-start){justify-items:start}.h-Grid:where(.wide\:h-r-ji-center){justify-items:center}.h-Grid:where(.wide\:h-r-ji-end){justify-items:end}.h-Grid:where(.wide\:h-r-ji-stretch){justify-items:stretch}}.h-BodyText{font-family:var(--h-font-family-body),Helvetica,Arial,sans-serif;font-weight:var(--h-body-text-font-weight)}.h-BodyText:where(.h-paragraph-spacing){margin-bottom:1em}.h-BodyText:where(.h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}@media (min-width:740px){.h-BodyText:where(.tablet\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.tablet\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.tablet\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}@media (min-width:992px){.h-BodyText:where(.desktop\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.desktop\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.desktop\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}@media (min-width:1200px){.h-BodyText:where(.wide\:h-r-size-sm){font-size:var(--h-body-text-sm-font-size);line-height:var(--h-body-text-sm-line-height)}.h-BodyText:where(.wide\:h-r-size-md){font-size:var(--h-body-text-md-font-size);line-height:var(--h-body-text-md-line-height)}.h-BodyText:where(.wide\:h-r-size-lg){font-size:var(--h-body-text-lg-font-size);line-height:var(--h-body-text-lg-line-height)}}.h-DetailText{font-family:var(--h-font-family-detail),Courier,monospace;font-weight:var(--h-detail-text-font-weight)}.h-DetailText:where(.h-color-text){color:var(--h-text-primary)}.h-DetailText:where(.h-color-valid){color:var(--h-feedback-positive-foreground-subtle)}.h-DetailText:where(.h-color-invalid){color:var(--h-feedback-danger-foreground-subtle)}.h-DetailText:where([data-inverted]){color:var(--h-text-inverted)}.h-DetailText:where(.h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}@media (min-width:740px){.h-DetailText:where(.tablet\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.tablet\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.tablet\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.tablet\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.tablet\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}@media (min-width:992px){.h-DetailText:where(.desktop\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.desktop\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.desktop\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.desktop\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.desktop\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}@media (min-width:1200px){.h-DetailText:where(.wide\:h-r-size-sm){font-size:var(--h-detail-text-sm-font-size);letter-spacing:var(--h-detail-text-sm-letter-spacing);line-height:var(--h-detail-text-sm-line-height)}.h-DetailText:where(.wide\:h-r-size-md){font-size:var(--h-detail-text-md-font-size);letter-spacing:var(--h-detail-text-md-letter-spacing);line-height:var(--h-detail-text-md-line-height)}.h-DetailText:where(.wide\:h-r-size-lg){font-size:var(--h-detail-text-lg-font-size);letter-spacing:var(--h-detail-text-lg-letter-spacing);line-height:var(--h-detail-text-lg-line-height)}.h-DetailText:where(.wide\:h-r-size-xl){font-size:var(--h-detail-text-xl-font-size);letter-spacing:var(--h-detail-text-xl-letter-spacing);line-height:var(--h-detail-text-xl-line-height)}.h-DetailText:where(.wide\:h-r-size-2xl){font-size:var(--h-detail-text-2xl-font-size);letter-spacing:var(--h-detail-text-2xl-letter-spacing);line-height:var(--h-detail-text-2xl-line-height)}.h-DetailText:where(.wide\:h-r-size-3xl){font-size:var(--h-detail-text-3xl-font-size);letter-spacing:var(--h-detail-text-3xl-letter-spacing);line-height:var(--h-detail-text-3xl-line-height)}.h-DetailText:where(.wide\:h-r-size-4xl){font-size:var(--h-detail-text-4xl-font-size);letter-spacing:var(--h-detail-text-4xl-letter-spacing);line-height:var(--h-detail-text-4xl-line-height)}}.h-Heading{color:var(--h-text-primary);font-family:var(--h-font-family-heading),Georgia,serif;font-weight:var(--h-font-weight-semibold)}.h-Heading:where([data-inverted]){color:var(--h-text-inverted)}.h-Heading:where(.h-size-sm){font-size:var(--h-heading-sm-font-size-mobile);line-height:var(--h-heading-sm-line-height-mobile)}.h-Heading:where(.h-size-md){font-size:var(--h-heading-md-font-size-mobile);line-height:var(--h-heading-md-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-md){font-size:var(--h-heading-md-font-size-desktop);line-height:var(--h-heading-md-line-height-desktop)}}.h-Heading:where(.h-size-lg){font-size:var(--h-heading-lg-font-size-mobile);line-height:var(--h-heading-lg-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-lg){font-size:var(--h-heading-lg-font-size-desktop);line-height:var(--h-heading-lg-line-height-desktop)}}.h-Heading:where(.h-size-xl){font-size:var(--h-heading-xl-font-size-mobile);font-weight:var(--h-heading-xl-font-weight);line-height:var(--h-heading-xl-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-xl){font-size:var(--h-heading-xl-font-size-desktop);line-height:var(--h-heading-xl-line-height-desktop)}}.h-Heading:where(.h-size-2xl){font-size:var(--h-heading-2xl-font-size-mobile);font-weight:var(--h-heading-2xl-font-weight);line-height:var(--h-heading-2xl-line-height-mobile)}@media (min-width:992px){.h-Heading:where(.h-size-2xl){font-size:var(--h-heading-2xl-font-size-desktop);line-height:var(--h-heading-2xl-line-height-desktop)}}.h-Strong{font-family:inherit;font-size:inherit;font-weight:var(--h-font-weight-semibold)}.h-Em,.h-Strong{color:inherit;line-height:inherit}.h-Em{font-style:italic}.h-Divider{all:unset;align-self:stretch;background-color:var(--h-border-subtle);display:block;flex-shrink:0}.h-Divider:where([data-orientation=horizontal]){height:var(--h-divider-border-width);width:auto}.h-Divider:where([data-orientation=vertical]){height:auto;width:var(--h-divider-border-width)}.h-ButtonBase{all:unset;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;cursor:pointer;display:inline-flex;flex-shrink:0;justify-content:center;outline:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:top;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;background-color:var(--h-button-base-background-color);border-radius:var(--h-button-border-radius);box-shadow:inset 0 0 0 var(--h-button-border-width) var(--h-button-base-border-color);color:var(--h-button-base-foreground-color);touch-action:manipulation;transition:background-color .2s ease-out}.h-ButtonBase:where([data-colorscheme=highlight]){--h-solid-background-color:var(--h-interactive-highlight-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-highlight-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-highlight-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-highlight-foreground-strong);--h-solid-border-color:var(--h-interactive-highlight-border-strong);--h-outline-border-color:transparent;--h-emphasis-background-color:var(--h-interactive-highlight-surface-strong-default);--h-emphasis-background-color-active:var(--h-interactive-highlight-surface-strong-active);--h-emphasis-background-color-hover:var(--h-interactive-highlight-surface-strong-hover);--h-emphasis-foreground-color:var(--h-interactive-highlight-foreground-strong);--h-emphasis-shadow-color:var(--h-shadow-default);--h-emphasis-border-color:var(--h-interactive-highlight-border-strong);--h-emphasis-transform:translateY(4px) translateX(4px)}.h-ButtonBase:where([data-colorscheme=affirmative]){--h-solid-background-color:var(--h-interactive-affirmative-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-affirmative-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-affirmative-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-affirmative-foreground-strong);--h-solid-border-color:var(--h-interactive-affirmative-border-strong);--h-outline-background-color-active:var(--h-interactive-affirmative-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-affirmative-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-affirmative-foreground-subtle);--h-outline-border-color:var(--h-interactive-affirmative-border-subtle);--h-ghost-background-color-active:var(--h-interactive-affirmative-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-affirmative-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-affirmative-foreground-subtle);--h-emphasis-border-color:transparent}.h-ButtonBase:where([data-colorscheme=destructive]){--h-solid-background-color:var(--h-interactive-destructive-surface-strong-default);--h-solid-background-color-active:var(--h-interactive-destructive-surface-strong-active);--h-solid-background-color-hover:var(--h-interactive-destructive-surface-strong-hover);--h-solid-foreground-color:var(--h-interactive-destructive-foreground-strong);--h-solid-border-color:var(--h-interactive-destructive-border-strong);--h-outline-background-color-active:var(--h-interactive-destructive-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-destructive-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-destructive-foreground-subtle);--h-outline-border-color:var(--h-interactive-destructive-border-subtle);--h-ghost-background-color-active:var(--h-interactive-destructive-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-destructive-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-destructive-foreground-subtle);--h-emphasis-border-color:transparent}.h-ButtonBase:where([data-colorscheme=functional]){--h-outline-background-color-active:var(--h-interactive-functional-surface-subtle-active);--h-outline-background-color-hover:var(--h-interactive-functional-surface-subtle-hover);--h-outline-foreground-color:var(--h-interactive-functional-foreground-subtle);--h-outline-border-color:var(--h-interactive-functional-border-subtle);--h-ghost-background-color-active:var(--h-interactive-functional-surface-subtle-active);--h-ghost-background-color-hover:var(--h-interactive-functional-surface-subtle-hover);--h-ghost-foreground-color:var(--h-interactive-functional-foreground-subtle)}.h-ButtonBase:where([data-colorscheme=functional]):where([data-inverted]){--h-outline-background-color-active:var(
2
2
  --h-interactive-functional-surface-subtle-inverted-active
3
3
  );--h-outline-background-color-hover:var(
4
4
  --h-interactive-functional-surface-subtle-inverted-hover