.mobile-signup-plan-field {
	gap: 11px;
}

body.mobile-data-helper-is-open {
	overflow: hidden;
}

.mobile-signup-plan-options {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-signup-plan-choice {
	cursor: pointer;
	display: block;
	min-width: 0;
	position: relative;
}

.mobile-signup-plan-choice > input {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px !important;
	min-height: 0 !important;
	overflow: hidden;
	padding: 0 !important;
	position: absolute;
	white-space: nowrap;
	width: 1px !important;
}

.mobile-signup-plan-card {
	background: #fff;
	border: 1px solid #c2d0d8;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 178px;
	padding: 19px;
	position: relative;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mobile-signup-plan-card::after {
	align-items: center;
	background: #fff;
	border: 1px solid #9eb1bd;
	border-radius: 50%;
	color: transparent;
	content: "✓";
	display: flex;
	font-size: 11px;
	font-weight: 900;
	height: 23px;
	justify-content: center;
	position: absolute;
	right: 17px;
	top: 17px;
	width: 23px;
}

.mobile-signup-plan-choice:hover .mobile-signup-plan-card {
	border-color: #79cce9;
	transform: translateY(-1px);
}

.mobile-signup-plan-choice > input:checked + .mobile-signup-plan-card {
	background: #f0faff;
	border-color: var(--mobile-blue-dark);
	box-shadow: inset 0 0 0 1px var(--mobile-blue-dark), 0 8px 22px rgba(11, 31, 51, .07);
}

.mobile-signup-plan-choice > input:checked + .mobile-signup-plan-card::after {
	background: var(--mobile-blue-dark);
	border-color: var(--mobile-blue-dark);
	color: #fff;
}

.mobile-signup-plan-choice > input:focus-visible + .mobile-signup-plan-card {
	box-shadow: 0 0 0 4px rgba(0, 174, 239, .18);
	outline: 2px solid var(--mobile-blue-dark);
	outline-offset: 2px;
}

.mobile-signup-plan-top {
	display: flex;
	flex-direction: column;
	padding-right: 34px;
}

.mobile-signup-plan-top strong {
	color: var(--mobile-navy);
	font-size: 29px;
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1;
}

.mobile-signup-plan-top small {
	color: #607481;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.35;
	margin-top: 5px;
}

.mobile-signup-plan-price {
	color: var(--mobile-navy);
	display: block;
	font-size: 13px;
	font-weight: 820;
	line-height: 1.45;
	margin-top: 19px;
}

.mobile-signup-plan-includes {
	color: #607481;
	display: block;
	font-size: 11px;
	line-height: 1.45;
	margin-top: 7px;
}

.mobile-signup-extra-data {
	align-items: center;
	background: #eef8eb;
	border: 1px solid #cde5c2;
	border-radius: 12px;
	display: flex;
	gap: 8px 16px;
	justify-content: space-between;
	margin-top: 1px;
	padding: 12px 14px;
}

.mobile-signup-extra-data strong {
	color: #315f20;
	font-size: 13px;
	line-height: 1.4;
}

.mobile-signup-extra-data span {
	color: #58734c;
	font-size: 11px;
	line-height: 1.4;
	text-align: right;
}

.mobile-data-helper-open {
	align-items: center;
	background: #f5f7f9;
	border: 1px solid var(--mobile-line);
	border-radius: 13px;
	color: var(--mobile-navy);
	cursor: pointer;
	display: grid;
	font-family: inherit;
	grid-template-columns: 34px 1fr auto;
	line-height: 1.3;
	margin: 1px 0 0;
	padding: 12px 14px;
	text-align: left;
	transition: background-color 160ms ease, border-color 160ms ease;
	width: 100%;
}

.mobile-data-helper-open:hover,
.mobile-data-helper-open:focus-visible {
	background: #eaf8fd;
	border-color: #78cae8;
	outline: 0;
}

.mobile-data-helper-open:focus-visible {
	box-shadow: 0 0 0 4px rgba(0, 174, 239, .14);
}

.mobile-data-helper-open-icon {
	align-items: center;
	background: var(--mobile-navy);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 850;
	height: 27px;
	justify-content: center;
	width: 27px;
}

.mobile-data-helper-open strong,
.mobile-data-helper-open small {
	display: block;
}

.mobile-data-helper-open strong {
	font-size: 13px;
	font-weight: 820;
}

.mobile-data-helper-open small {
	color: #687c88;
	font-size: 10px;
	font-weight: 650;
	margin-top: 2px;
}

.mobile-data-helper {
	background: transparent;
	border: 0;
	max-height: calc(100dvh - 32px);
	max-width: 760px;
	overflow: visible;
	padding: 0;
	width: calc(100% - 32px);
}

.mobile-data-helper:not([open]) {
	display: none;
}

.mobile-data-helper::backdrop {
	background: rgba(5, 20, 32, .72);
	backdrop-filter: blur(3px);
}

.mobile-data-helper-panel {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 30px 90px rgba(4, 18, 29, .35);
	max-height: calc(100dvh - 32px);
	overflow: auto;
}

.mobile-data-helper-header {
	align-items: flex-start;
	background: var(--mobile-navy);
	border-radius: 24px 24px 0 0;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 25px 28px 23px;
}

.mobile-data-helper-header > div > span {
	color: #80d8f6;
	display: block;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .12em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.mobile-data-helper-header h2 {
	color: #fff;
	font-size: clamp(27px, 4vw, 36px);
	font-weight: 720;
	letter-spacing: -.035em;
	line-height: 1.05;
	margin: 0;
}

.mobile-data-helper-header button {
	align-items: center;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 24px;
	height: 39px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	width: 39px;
}

.mobile-data-helper-header button:hover,
.mobile-data-helper-header button:focus-visible {
	background: rgba(255, 255, 255, .2);
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.mobile-data-helper-body {
	padding: 25px 28px 27px;
}

.mobile-data-helper-body > p:first-child {
	color: #536976;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 21px;
}

.mobile-data-helper-fields {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-data-helper-fields label {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.mobile-data-helper-fields label > span {
	color: var(--mobile-navy);
	font-size: 12px;
	font-weight: 780;
}

.mobile-data-helper-fields select {
	background: #fff;
	border: 1px solid #b8c9d3;
	border-radius: 10px;
	color: var(--mobile-ink);
	font-family: inherit;
	font-size: 16px;
	min-height: 49px;
	padding: 10px 12px;
	width: 100%;
}

.mobile-data-helper-fields select:focus {
	border-color: var(--mobile-blue-dark);
	box-shadow: 0 0 0 4px rgba(0, 174, 239, .12);
	outline: 0;
}

.mobile-data-helper-result {
	background: #f5f7f9;
	border: 1px solid var(--mobile-line);
	border-radius: 16px;
	margin-top: 20px;
	padding: 18px;
}

.mobile-data-helper-total {
	align-items: baseline;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.mobile-data-helper-total span {
	color: #667985;
	font-size: 10px;
	font-weight: 820;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mobile-data-helper-total strong {
	color: var(--mobile-navy);
	font-size: 21px;
	letter-spacing: -.025em;
}

.mobile-data-helper-meter {
	background: #dbe4ea;
	border-radius: 999px;
	height: 8px;
	margin: 15px 0 17px;
	overflow: hidden;
	position: relative;
}

.mobile-data-helper-meter > span {
	background: linear-gradient(90deg, var(--mobile-green), var(--mobile-blue));
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width 220ms ease;
	width: 4%;
}

.mobile-data-helper-marker {
	background: rgba(11, 31, 51, .52);
	height: 100%;
	position: absolute;
	top: 0;
	width: 1px;
}

.mobile-data-helper-marker--two { left: 25%; }
.mobile-data-helper-marker--five { left: 62.5%; }

.mobile-data-helper-result h3 {
	color: var(--mobile-navy);
	font-size: 18px;
	letter-spacing: -.018em;
	line-height: 1.3;
	margin: 0 0 5px;
}

.mobile-data-helper-result p {
	color: #5a6e7b;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}

.mobile-data-helper-actions {
	align-items: center;
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.mobile-data-helper-actions .mobile-button {
	border: 0;
	cursor: pointer;
	font-family: inherit;
}

.mobile-data-helper-actions [hidden] {
	display: none;
}

.mobile-data-helper-cancel {
	background: transparent;
	border: 0;
	color: #536976;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 780;
	padding: 12px 4px;
}

.mobile-data-helper-cancel:hover,
.mobile-data-helper-cancel:focus-visible {
	color: var(--mobile-blue-dark);
	outline: 0;
	text-decoration: underline;
}

.mobile-data-helper-footnote {
	color: #758793;
	font-size: 10px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.mobile-data-helper-footnote a,
.mobile-data-helper-footnote a:visited {
	color: #087ca8;
	font-weight: 750;
}

@media (max-width: 600px) {
	.mobile-signup-plan-options,
	.mobile-data-helper-fields {
		grid-template-columns: 1fr;
	}

	.mobile-signup-plan-card {
		min-height: 0;
	}

	.mobile-signup-extra-data {
		align-items: flex-start;
		flex-direction: column;
	}

	.mobile-signup-extra-data span {
		text-align: left;
	}

	.mobile-data-helper {
		max-height: calc(100dvh - 16px);
		width: calc(100% - 16px);
	}

	.mobile-data-helper-panel {
		border-radius: 18px;
		max-height: calc(100dvh - 16px);
	}

	.mobile-data-helper-header {
		border-radius: 18px 18px 0 0;
		padding: 20px 19px 18px;
	}

	.mobile-data-helper-body {
		padding: 20px 19px 22px;
	}

	.mobile-data-helper-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 5px;
	}

	.mobile-data-helper-actions .mobile-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-signup-plan-card,
	.mobile-data-helper-meter > span {
		transition: none;
	}
}
