/* =========================================
   RESPONSIVE
========================================= */

/* Navbar responsive */
@media (max-width: 900px) {
	.navbar {
		padding-top: 8px;
	}

	.navbar__inner {
		min-height: 62px;
		padding: 8px 14px;
	}

	.navbar__list {
		gap: 0;
		padding: 6px 12px;
	}

	.navbar__link {
		padding: 6px 10px;
		font-size: 13px;
	}
}

@media (max-width: 700px) {
	.navbar {
		padding: 8px var(--container-padding) 0;
	}

	.navbar__inner {
		position: relative;
		min-height: 56px;
		padding: 8px 12px;
		gap: 12px;
	}

	.navbar__toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.navbar__nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		width: 100%;
		padding: 10px;
		background: var(--ink);
		border-radius: 16px;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
	}

	.navbar__inner.is-open .navbar__nav {
		display: block;
	}

	.navbar__inner.is-open .navbar__toggle-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.navbar__inner.is-open .navbar__toggle-line:nth-child(2) {
		opacity: 0;
	}

	.navbar__inner.is-open .navbar__toggle-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.navbar__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 8px;
		background: rgba(255, 255, 255, 0.06);
	}

	.navbar__link {
		width: 100%;
		padding: 10px 12px;
		font-size: 14px;
	}

	.navbar__item--mobile-cta {
		display: block;
	}

	.navbar__cta {
		display: none;
	}
}

@media (max-width: 1440px) {
	.promo-showcase {
		padding-top: 56px;
		padding-bottom: 24px;
	}

	.promo-showcase .container-holder {
		height: auto;
		min-height: auto;
	}

	.promo-showcase--reverse .left-wrapper {
		order: 1;
	}

	.promo-showcase--reverse .right-wrapper {
		order: 2;
	}
}

@media (max-width: 1100px) {
	:root {
		--container-padding: 32px;
	}

	body {
		overflow-x: hidden;
	}

	.section-wrapper {
		min-height: auto;
	}

	.privacy-hero {
		padding: 58px 0 56px;
	}

	.privacy-page .privacy-hero {
		padding-top: 126px;
	}

	.privacy-hero .container-holder {
		grid-template-columns: 1fr;
		row-gap: 34px;
	}

	.privacy-hero__title {
		font-size: clamp(44px, 8vw, 56px);
	}

	.privacy-hero__text {
		font-size: 19px;
		line-height: 1.65;
	}

	.privacy-hero__illustration {
		max-width: 420px;
		margin: 0 auto;
	}

	.privacy-layout__grid {
		grid-template-columns: 1fr;
		row-gap: 22px;
	}

	.privacy-sidebar {
		position: static;
		padding: 20px;
	}

	.privacy-content__section h2 {
		font-size: clamp(34px, 6vw, 42px);
	}

	.privacy-content__section p,
	.privacy-content__section li {
		font-size: 17px;
		line-height: 1.7;
	}

	/* Bento */
	[data-interface="bento-grid"] {
		padding-top: 24px;
		padding-bottom: 88px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 280px 180px 280px;
		width: 100%;
		margin: 0;
		justify-content: stretch;
	}

	.bento-card--text,
	.bento-card--tall,
	.bento-card--sm,
	.bento-card--xs {
		width: 100%;
		height: 100%;
	}

	.bento-card--text {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
	}

	.bento-card--tall {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
	}

	.bento-card--sm {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}

	.bento-card--xs {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
	}

	.bento-card--text h2 {
		font-size: clamp(42px, 7vw, 58px);
		line-height: 1;
	}

	/* Topics */
	[data-interface="topics"] {
		padding-top: 10px;
		padding-bottom: 86px;
	}

	.topic-title {
		font-size: clamp(42px, 7vw, 54px);
		line-height: 1;
	}

	.topics-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Key features */
	[data-interface="key-features"] {
		padding-top: 8px;
		padding-bottom: 84px;
		margin-top: 120px;
	}

	.key-features-title {
		font-size: clamp(40px, 7vw, 50px);
		line-height: 1;
	}

	.key-features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feature-card {
		min-height: 280px;
	}

	.feature-card h3 {
		font-size: clamp(28px, 4vw, 34px);
		line-height: 1.05;
	}

	.feature-card p {
		font-size: clamp(17px, 2.5vw, 21px);
		line-height: 1.45;
	}

	/* How it works */
	[data-interface="how-it-works"] {
		padding-top: 8px;
		padding-bottom: 92px;
	}

	.hiw-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.hiw-top h2 {
		font-size: clamp(40px, 8vw, 54px);
		line-height: 1;
	}

	.hiw-toggle-btn {
		font-size: 16px;
		line-height: 1;
		padding: 11px 28px;
	}

	.hiw-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.hiw-card {
		min-height: 400px;
		padding: 22px;
	}

	.hiw-copy h3 {
		font-size: clamp(30px, 5vw, 40px);
		line-height: 1.05;
	}

	/* Testimonials */
	[data-interface="testimonials"] {
		padding-top: 8px;
		padding-bottom: 84px;
		margin-top: 120px;
	}

	.testimonials-wrap {
		width: 100%;
		height: auto;
	}

	.testimonials-wrap h2 {
		font-size: clamp(40px, 7vw, 50px);
		line-height: 1;
	}

	.testimonial-card {
		width: 206px;
	}

	/* Footer */
	[data-interface="site-footer"] {
		padding-top: 72px;
		padding-bottom: 40px;
	}

	.footer-shell {
		gap: 68px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 32px;
	}

	/* Promo sections */
	.promo-showcase {
		padding-top: 48px;
		padding-bottom: 20px;
	}

	.promo-showcase .container-holder {
		grid-template-columns: 1fr;
		row-gap: 40px;
		height: auto;
		min-height: auto;
	}

	.promo-showcase .left-wrapper,
	.promo-showcase .right-wrapper {
		width: 100%;
		max-width: 100%;
	}

	.promo-showcase .inside-holder:not([aria-hidden="true"]) {
		max-width: 100%;
	}

	.promo-showcase .inside-holder[aria-hidden="true"] {
		min-height: 530px;
		align-items: center;
		justify-content: center;
	}

	.promo-showcase .purple-panel {
		width: min(100%, 560px);
		aspect-ratio: 56 / 58;
		height: auto;
		margin-inline: auto;
		border-radius: 24px;
	}

	.promo-showcase .phone-image {
		width: min(360px, 74%);
		height: auto;
		top: 44%;
		left: 50%;
	}

	.promo-showcase h1 {
		font-size: clamp(40px, 7vw, 54px);
		line-height: 1;
		max-width: 10ch;
	}

	.promo-showcase p {
		max-width: 560px;
		font-size: 17px;
		line-height: 1.6;
	}
}

@media (max-width: 767px) {
	.privacy-hero {
		padding: 42px 0 44px;
	}

	.privacy-page .privacy-hero {
		padding-top: 104px;
	}

	.privacy-hero__text {
		font-size: 17px;
		margin-bottom: 24px;
	}

	.privacy-hero__back-btn {
		height: 46px;
		padding: 0 22px;
	}

	.privacy-layout {
		padding: 22px 0 70px;
	}

	.privacy-sidebar__title {
		font-size: 18px;
	}

	.privacy-sidebar__link {
		padding: 12px 14px;
		font-size: 15px;
	}

	.privacy-content__updated {
		font-size: 14px;
	}

	.privacy-content__section {
		padding-bottom: 28px;
	}

	.privacy-content__section h2 {
		font-size: clamp(28px, 7vw, 34px);
		margin-bottom: 14px;
	}

	.privacy-content__section p,
	.privacy-content__section li {
		font-size: 16px;
		line-height: 1.65;
	}

	.privacy-content__section ul {
		padding-left: 18px;
	}

	:root {
		--container-padding: 20px;
	}

	.section-wrapper,
	.reveal,
	.promo-showcase .reveal,
	.promo-showcase .inside-holder:not([aria-hidden="true"]) > * {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
		animation: none;
	}

	img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	/* Bento */
	[data-interface="bento-grid"] {
		padding-top: 16px;
		padding-bottom: 70px;
	}

	.bento-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.92fr);
		grid-template-rows: auto 196px 224px;
		width: 100%;
		margin: 0;
		column-gap: 24px;
		row-gap: 16px;
	}

	.bento-card--text,
	.bento-card--tall,
	.bento-card--sm,
	.bento-card--xs {
		width: 100%;
		height: 100%;
	}

	.bento-card--text {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		min-height: 320px;
		padding: 8px 0 20px;
	}

	.bento-card--tall {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
		min-height: 436px;
	}

	.bento-card--sm {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		min-height: 196px;
	}

	.bento-card--xs {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		min-height: 224px;
	}

	.bento-card--text h1 {
		font-size: clamp(36px, 10vw, 50px);
		line-height: 1;
	}

	.bento-card img {
		height: 100%;
	}

	.section-wrapper[data-interface="bento-grid"] .bento-card--tall,
	.section-wrapper[data-interface="bento-grid"] .bento-card--sm,
	.section-wrapper[data-interface="bento-grid"] .bento-card--xs,
	.section-wrapper[data-interface="bento-grid"] .bento-card img,
	.section-wrapper[data-interface="bento-grid"] .bento-image-tag {
		opacity: 1;
		transform: none;
		filter: none;
	}

	/* Topics */
	[data-interface="topics"] {
		padding-top: 6px;
		padding-bottom: 72px;
	}

	.topic-title {
		font-size: clamp(34px, 8vw, 46px);
		line-height: 1;
	}

	.topics-grid {
		grid-template-columns: 1fr;
	}

	.topic-card {
		height: auto;
		min-height: 210px;
	}

	/* Key features */
	[data-interface="key-features"] {
		padding-top: 0;
		padding-bottom: 70px;
		margin-top: 80px;
	}

	.key-features-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		padding: 24px;
		min-height: auto;
	}

	/* .feature-preview {
		height: 130px;
	} */

	.feature-card h3 {
		font-size: 22px;
		line-height: 1.1;
		text-align: center;
	}

	.feature-card p {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
	}

	/* How it works */
	[data-interface="how-it-works"] {
		padding-top: 0;
		padding-bottom: 72px;
	}

	.hiw-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hiw-card {
		min-height: 0;
		gap: 18px;
		padding: 18px;
	}

	/* Testimonials */
	[data-interface="testimonials"] {
		padding-top: 0;
		padding-bottom: 70px;
		margin-top: 80px;
	}

	.testimonials-wrap {
		padding-top: 40px;
	}

	.testimonials-wrap h2 {
		font-size: clamp(34px, 8vw, 44px);
		line-height: 1;
		margin-bottom: 24px;
	}

	.testimonials-rows {
		display: grid;
		gap: 16px;
		justify-items: center;
	}

	.testimonials-row,
	.testimonials-row--offset {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0;
		margin: 0;
		transform: none;
		animation: none;
	}

	.testimonial-card {
		width: 100%;
		min-width: 0;
	}
	.testimonials-rows::before,
	.testimonials-rows::after {
		width: 24px;
	}

	/* Footer */
	[data-interface="site-footer"] {
		padding-top: 62px;
		padding-bottom: 34px;
	}

	.footer-shell {
		gap: 52px;
	}

	.footer-logo {
		font-size: 28px;
		line-height: 32px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 24px;
	}

	.footer-column h3 {
		font-size: 18px;
		line-height: 22px;
	}

	.footer-column a {
		font-size: 15px;
		line-height: 22px;
	}

	.footer-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	/* Promo sections */
	.promo-showcase {
		padding-top: 36px;
		padding-bottom: 12px;
	}

	.promo-showcase .container-holder {
		row-gap: 28px;
	}

	.promo-showcase .inside-holder[aria-hidden="true"] {
		min-height: 460px;
	}

	.promo-showcase .purple-panel {
		width: min(100%, 400px);
		aspect-ratio: 56 / 51;
		height: auto;
		border-radius: 24px;
	}

	.promo-showcase .phone-image {
		width: min(280px, 74%);
		opacity: 1;
		transition: none;
		animation: none;
	}

	.promo-showcase h1 {
		font-size: clamp(32px, 10vw, 42px);
		line-height: 1;
		max-width: 9ch;
		letter-spacing: -0.03em;
	}

	.promo-showcase p {
		font-size: 16px;
		line-height: 1.55;
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.privacy-hero__illustration {
		max-width: 100%;
		border-radius: 20px;
	}

	.privacy-hero__card--one {
		width: 96px;
		height: 70px;
	}

	.privacy-hero__card--two {
		width: 80px;
		height: 56px;
	}

	.privacy-hero__card--three {
		width: 126px;
		height: 78px;
	}

	.privacy-sidebar {
		padding: 16px;
		border-radius: 16px;
	}

	.privacy-content__section h2 {
		font-size: 28px;
	}

	:root {
		--container-padding: 16px;
	}

	/* Bento */
	[data-interface="bento-grid"] {
		padding-top: 4px;
		padding-bottom: 56px;
	}

	.bento-grid {
		grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.94fr);
		grid-template-rows: auto 170px 192px;
		column-gap: 18px;
		row-gap: 12px;
	}

	.bento-card--text {
		padding: 28px 22px;
	}

	.bento-card--text h1 {
		font-size: clamp(34px, 10vw, 42px);
		line-height: 1;
		margin-bottom: 16px;
	}

	.bento-card--text p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 22px;
	}

	.bento-card--tall {
		min-height: 374px;
	}

	.bento-card--sm {
		min-height: 170px;
	}

	.bento-card--xs {
		min-height: 192px;
	}

	/* Topics + Key features + Testimonials */
	[data-interface="topics"],
	[data-interface="key-features"],
	[data-interface="testimonials"] {
		padding-bottom: 56px;
	}

	.topic-title,
	.key-features-title,
	.testimonials-wrap h2 {
		font-size: 38px;
		line-height: 1;
	}

	.topic-title {
		margin-bottom: 22px;
	}

	.key-features-title {
		margin-bottom: 20px;
	}

	.testimonials-wrap {
		padding-top: 30px;
		border-radius: 16px;
	}

	.testimonial-card {
		min-height: 124px;
		padding: 14px;
	}

	.testimonial-card p,
	.testimonial-card span {
		font-size: 13px;
		line-height: 1.45;
	}

	.feature-card {
		padding: 16px;
		gap: 12px;
	}

	/* .feature-preview {
		height: 120px;
	} */

	.feature-card h3 {
		font-size: 24px;
		line-height: 1.05;
	}

	.feature-card p {
		font-size: 16px;
		line-height: 1.5;
		max-width: 100%;
	}

	.topic-card {
		min-height: 0;
		padding: 18px 16px;
	}

	.topic-card h3 {
		font-size: 15px;
		line-height: 20px;
	}

	.topic-card p {
		font-size: 13px;
		line-height: 18px;
	}

	/* How it works */
	[data-interface="how-it-works"] {
		padding-bottom: 58px;
	}

	.hiw-top {
		margin-bottom: 20px;
	}

	.hiw-top h2 {
		font-size: 36px;
		line-height: 1;
	}

	.hiw-toggle {
		width: 100%;
	}

	.hiw-toggle-btn {
		flex: 1;
		text-align: center;
		font-size: 14px;
		line-height: 1;
		padding: 10px 16px;
	}

	.hiw-grid {
		gap: 12px;
	}

	.hiw-card {
		padding: 16px;
		gap: 12px;
	}

	.hiw-preview {
		min-height: 158px;
	}

	.hiw-copy {
		margin-top: 8px;
		min-height: 0;
	}

	.hiw-copy h3 {
		font-size: 28px;
		line-height: 1.1;
	}

	/* Footer */
	[data-interface="site-footer"] {
		padding-top: 54px;
		padding-bottom: 28px;
	}

	.footer-main {
		gap: 32px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-logo {
		font-size: 25px;
		line-height: 28px;
	}

	.footer-column {
		gap: 10px;
	}

	.footer-column h3 {
		margin-bottom: 4px;
		font-size: 17px;
		line-height: 20px;
	}

	.footer-column a,
	.footer-meta {
		font-size: 14px;
		line-height: 20px;
	}

	/* Promo sections */
	.promo-showcase {
		padding-top: 32px;
		padding-bottom: 8px;
	}

	.promo-showcase .container-holder {
		row-gap: 50px;
	}

	.promo-showcase .inside-holder[aria-hidden="true"] {
		min-height: 340px;
	}

	.promo-showcase .purple-panel {
		width: min(calc(100% - 24px), 320px);
		aspect-ratio: 56 / 51;
		height: auto;
		border-radius: 24px;
	}

	.promo-showcase .phone-image {
		width: 220px;
	}

	.promo-showcase h1 {
		font-size: clamp(28px, 10vw, 36px);
		line-height: 1;
	}

	.promo-showcase p {
		font-size: 15px;
		line-height: 1.5;
	}

	.promo-showcase .inside-holder:not([aria-hidden="true"]) {
		max-width: 100%;
	}
}

/* Keep testimonials identical to desktop on all smaller breakpoints */
@media (max-width: 1100px) {
	[data-interface="testimonials"] {
		padding-top: 0;
		padding-bottom: 110px;
		margin-top: 180px;
	}

	.testimonials-wrap {
		height: 766px;
		padding: 66px 0 86px;
		border-radius: 30px;
	}

	.testimonials-wrap h2 {
		margin-bottom: 58px;
		font-size: 54px;
		line-height: 58px;
	}

	.testimonials-rows {
		overflow: hidden;
		display: block;
		gap: 0;
		justify-items: initial;
		padding-bottom: 14px;
	}

	.testimonials-row {
		display: flex;
		grid-template-columns: none;
		gap: 20px;
		width: max-content;
		padding: 0 26px;
		margin-bottom: 20px;
	}

	.testimonials-row--offset {
		display: flex;
		grid-template-columns: none;
		gap: 20px;
		width: max-content;
		padding: 0 26px;
		margin-bottom: 0;
		transform: translateX(-90px);
	}

	.testimonial-card {
		width: 282px;
		min-height: 210px;
		padding: 0 26px;
	}

	.testimonial-card p {
		margin-bottom: 43px;
		font-size: 16px;
		line-height: 24px;
	}

	.testimonial-card span {
		margin-bottom: 15px;
		font-size: 16px;
		line-height: 16px;
	}
}
